I configured the button like this: Choices('RTR Workflow Master Data 4.0'.'Task Type'), it gave me the task type that I need, but how can I create another drop-down menu that shows the information related with that task?
For Example Task Type: Play futbool, (New dropdown): Monday, Wednesday. All that I need to filter is choice type.
Solved! Go to Solution.
Hi @felipewltc ,
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:
Please take a try with above solution, then check if the issue is solved.
Best regards,
Hi @felipewltc ,
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:
Please take a try with above solution, then check if the issue is solved.
Best regards,
All working perfect, thank you for your help.
User | Count |
---|---|
3 | |
2 | |
2 | |
2 | |
1 |
User | Count |
---|---|
11 | |
7 | |
1 | |
1 | |
1 |