
Announcements
I have Combo box in my PowerApps
where I have following Items Property
Sort(Distinct(Filter('FiatList', Network.Value = ComboBox1_5.Selected.Value), 'Data Name'), Value)it is showing an error under = " Incompatible types for comparison. These types can't be compared: Text, Record. "
Network is a choice column
could anyone please help me with these
Hi @Danny_Dicaprio ,
Is ComboBox1_5 a single or multiple selection and is Network a single or multiple value Choice column
If the Combo Box is multi-selection
Sort(
Distinct(
Filter(
'FiatList',
Network.Value in ComboBox1_5.SelectedItems
),
'Data Name'
),
Value
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
MVP (Business Applications) Visit my blog Practical Power Apps