Hi @grantreid
To configure this, you can use the below expressions:
App -> OnStart -> ClearCollect(TeamAssignmentCollection, {Value:"All"});Collect(TeamAssignmentCollection,Choices('SharePointList'.'Team assignment'));
ClearCollect(CurrentStageCollection, {Value:"All"});Collect(CurrentStageCollection,Choices('SharePointList'.'Current Stage'));
Now, in the Items property of the Dropdowns:
Drop_Stage -> CurrentStageCollection
Drop_TeamAssign -> TeamAssignmentCollection
Then, finally you can set the Filter expression like:
If Choice Type column is single select:
Filter('SharePointList', If(Drop_Stage.Selected.Value = "All", true,Stage.Value=Drop_Stage.Selected.Value), If(Drop_TeamAssign.Selected.Value = "All", true, 'Team assignment'.Value= Drop_TeamAssign.Selected.Value))
If Choice Type column is multi select:
Filter('SharePointList', If(Drop_Stage.Selected.Value = "All", true,Drop_Stage.Selected.Value in Stage.Value), If(Drop_TeamAssign.Selected.Value = "All", true,Drop_TeamAssign.Selected.Value in 'Team assignment'.Value))
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!