
Announcements
Hi,
I am getting error for following scenarios. How to use Dataverse Choices and Choice field value in comparison?
How to display choice value in powerapps view mode?
Thank you
Hi @aaedla,
You could use a filter and a text function to execute the comparison. However, that might give you a delegation warning.
Below is an example of that with the Shipping Method of address1 of the account table in Dataverse (which is a choice column).
Filter(Accounts, Text('address1_shippingmethodcode') = "DHL")
Another approach would be to create a separate view with a filter for it in Dataverse:
https://www.inogic.com/blog/2019/12/avoid-delegation-while-filtering-records-in-power-apps/
Below is an example with a view name ShippingMethodDHL
Filter(Accounts, ShippingMethodDHL)