In PowerApps, creating an app that individuals use to submit when they want additional vehicle allocation request, so it is tracked in one place. In one of the questions, I've created 3 dropdowns with two being dependent on a previous (2nd dropdown dependent on first, and 3rd dropdown dependent on 1st -> to determine which options to show). The third dropdown field is numbers whereas the first two are text. Receiving an incompatible type for comparison error on the third when I created the depends on value. Any way to fix or go around this?
Incompatible types for comparison. Numbers, Text can't be compared
3.5k views Asked by Rifi J At
1
There are 1 answers
Related Questions in WINDOWS-STORE-APPS
- Microsoft Partner Center Issues
- Microsoft Store Policy - User Generated Content
- Error while uploading a binary to StoreApp using API
- Publish a MAUI app for the Microsoft Store returns a ProcessorArchitecture error
- Dependency issue when publish a MAUI application for Windows Store
- Can you open devtools with a windows store app?
- How to create a new app in windows developer center
- Debug WinJS application in production
- Why is my Windows Application Packaging Project stripping all my native libraries from the published package?
- UWP and User Secrets in Deployed Apps
- How to confirm is a user knows the xbox pin in a UWP app?
- How to get refund information for a Windows Store app via API
- Incompatible types for comparison. Numbers, Text can't be compared
- Should TrySilentDownloadAndInstallStorePackageUpdatesAsync relaunch the app?
- How to determine if UWP app is running with windows open?
Related Questions in POWERAPPS
- Keep getting error "network error when using patch function: the specified record was not found" when using canvas app form - sql on-premise
- Allowing any member of a dynamic group to send as from a shared mailbox
- Why is this flow activating an infinite loop?
- Swagger definition for custom connector to trigger databricks jobs in Power Apps
- Limit decimals from import calculated value in power BI
- Error when running a flow from a Power App
- Can I embed PowerBI report in Power Apps in the app-owns-data fashion?
- How to manually add a value to data source with combo box in Power Apps
- SharePoint Online - Display Image on a Page based on column status value from list
- How to fill rectangles in my PowerApps project?
- Using print screen to print a title and barcode is working only on design mode
- Extracting number from extracted text in an image using ocr in power automate flow
- PowerApp -> Data Connector -> Azure Blob Storage.. Change Name / Description
- I want to add an action for pressing the Enter key (the same as for the button), in powerapps
- Handle concurrent access inside Power Apps for SubmitForm() & Patch()
Related Questions in POWERAPPS-CANVAS
- Keep getting error "network error when using patch function: the specified record was not found" when using canvas app form - sql on-premise
- Swagger definition for custom connector to trigger databricks jobs in Power Apps
- Error when running a flow from a Power App
- How to manually add a value to data source with combo box in Power Apps
- Using print screen to print a title and barcode is working only on design mode
- PowerApp -> Data Connector -> Azure Blob Storage.. Change Name / Description
- Handle concurrent access inside Power Apps for SubmitForm() & Patch()
- Power Automate flow to trigger PowerApps
- can not use portal template in power apps
- "RetrievePrivilegesForUser, the user with id *** has not been assigned any roles, they need a role with prvReadWorkflow privileges"
- Patch function error while using collection
- How to rearrange dependent dropdowns in power apps
- Power apps fail to search multiple columns with excel data source
- How we can download an image with PNG format in Power Apps?
- Powerapps patch issues when setting a field by a text label input
Related Questions in INCOMPATIBLETYPEERROR
- warning: assignment from incompatible pointer type for linklist array
- Incompatible types when passing method in another class
- Incompatible type error for string[]
- Android Studio: Error:(30, 24) error: incompatible types: Activity cannot be converted to Fragment
- getting type error in Haskell using my code
- incompatible type for argument 1
- Java ~ Incompatible types when returning an array?
- error: incompatible types when passing an array to another method
- Incompatible File Format
- Incompatible types in assignment. C
- incompatible types:NewFeedAdapter.MyAdViewHolder cannot be converted to NewFeedAdapter.ViewHolder
- Getting a warning about incompatible pointer types
- Is this a correct use of symbols in Ruby?
- iOS and Xcode: incompatible type error when setting delegate and datasource in a UITableView
- C warning: incompatible pointer types passing
Related Questions in POWERAPPS-SELECTED-ITEMS
- How to rearrange dependent dropdowns in power apps
- Using PowerApps IF and FILTER statements in the same Item Property
- How can I format a label or text box to receive currency values using decimal places correctly?
- How to return a data from Dataverse and assign to a variable inside Set Function in PowerApps
- How do I get presistent selection in Model Driven App subGrids/Grids?
- Powerapps Gallery 1st column sum in next column
- Pass a dropdown selected value from one screen to another screen new form dropdown in PowerApps
- Microsoft Power Apps - Bad Gateway Error on App that was working
- PowerApps Radio Item not clearing
- How to Implement a Color Picker for BorderColor Property in React PowerApp Component?
- How to set the Fill property of a combobox if the drop-down is selected?
- Incompatible types for comparison. Numbers, Text can't be compared
- How we can use 2 if functions on submit button in PowerApps
- Power Apps wrap into Android apk and sharepoint data fetching issue
- Power app Filter on gallery by a LookUp field
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)


You are facing this issue because you are using different types of columns for comparison (Number and Text).
Also, from table structure image provided in your question, if you want to filter the items based on Series column, you will have to write the formula like:
Then you can show Model # column in
Valueproperty of your drop down control.Remember you will need the exact matching fields (both data type and values) for comparison in
Filterfunction.