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 best solutions below
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
- How use OData $filter query dynamic date
- Not getting 'Flows' option for Buttons in PowerApps Studio for Web
- How do I allow users to only view/edit/delete records they created themselves?
- How to connect PowerApps with AzureAD
- Login to PowerApps using Sharepoint Credentials
- I am trying to create my first power apps application with 2 sql server connected tables
- How to call IoT Central Device Bridge from Power Apps using Power Apps Custom API?
- Truetext & falsetext not displaying while using toggling button in Powerapps?
- How to display only certain column values from a sharepoint list when pressed on a button tab in Power Apps?
- Submit button overwrites previously populated rows in excel table in PowerApps?
- Power Apps - how to clone? how to change source from SharePoint to CDS?
- How to generate a canvas app form field dynamically?
- Power Automate - Flow not working in a solution
- Microsoft Power Apps Licence
- Can I source the list items of a dropdown box from an excel sheet in Power Apps?
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 display only certain column values from a sharepoint list when pressed on a button tab in Power Apps?
- Submit button overwrites previously populated rows in excel table in PowerApps?
- How to evaluate empty TextBox in PowerApps?
- Display Exact Same Text on Another Text Box
- How to update color change of TemplateFill in a Gallery in PowerApps?
- Powerapps Gallery 1st column sum in next column
- How do I get presistent selection in Model Driven App subGrids/Grids?
- How to return a data from Dataverse and assign to a variable inside Set Function in PowerApps
- PowerApps Gallery Default Selected Record
- Merging two similar records in powerApps
- How to use button to display filtered data from excel table in PowerApps?
- How to pull relevant data from Excel table, create dropdown and build edit form in PowerApps?
- How to check if a Choice field option is selected
- power apps problem with sharepoint person or group field
- Selected property of a Map control in Power Apps remains blank
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)
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?


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.