Re: filter choices using dropdown
Hi @Anonymous ,
Could you please share a bit more about the 'RTR Workflow Master Data 4.0' data source? Is it a SP List?
Does your another Dropdown box also connect to a Choice type column?
I assume that the 'RTR Workflow Master Data 4.0' data source is a SP List, and the another Dropdown also connects to a Choice type column, is it true?
I have made a test on my side, please take a try with the following workaround:
Set the Items property of your second Dropdown box to following:
Filter(
Choices('RTR Workflow Master Data 4.0'.'AnotherChoiceField'),
Value in ForAll(
Filter('RTR Workflow Master Data 4.0', 'Task Type'.Value = FirstDropdown.Selected.Value).'AnotherChoiceField',
'AnotherChoiceField'.Value
)
)
Note: The FirstDropdown represents the first Dropdown box in your app, whose Items property set to Choices('RTR Workflow Master Data 4.0'.'Task Type'). The 'AnotherChoiceField' represents the another Choice field in your data source, which you want to display in your second Dropdown box.
More details about the ForAll function, please check the following article:
ForAll function
Please take a try with above solution, then check if the issue is solved.
Best regards,