Hi Team, I have a small power app that displays a gallery based off a dropdown selection of the primary category it is in.
Not all categories are in use and I am wanting to hide the ones that aren't against an item in the list.
The Dropdown uses this FX and works but I need to add a filter to it. There is for example 50 categories but only 30 are currently assigned to items in the sharepoint list.
With({lclChoices: Choices('Core Tool Matrix'.'Primary Category')}, ForAll(Sequence(CountRows(lclChoices)+1), {Value: If(Value=1, "All", Last(FirstN(lclChoices,Value-1)).Value)}))
