Hi There,
I have a wired issue with combo box filter.
My PowerApps uses form to view and submit data to a Sharepoint list.
I have a column in sharepoint list named Region, which is of datatype Choice and has 4 choices - UK, APAC, EU, NA.
The field in PowerApps is shown as dropdown (combo box).
I would need to filter out UK in certain condition and display other 3 regions.
The item property of the combo box is updated as
If(Value(DataCardValue02.Text) = 6, Filter(Choices([@DPUC235611].Region), Value exactin ("EU")|| Value exactin ("APAC")|| Value exactin ("NA")), Choices([@DPUC235611].Region))
The above logic works fine in the "Preview the app (F5)" mode, however when i publish the app and test in the link, the dropdown list does not get filtered; All items are shown.
I cleared the browser cache as well but nothing works.
When i see the filtered values in the label (in link), it shows me the filtered list. But the drop down is not updated with filtered list
Can you suggest me what i'm doing wrong here?