Hi @Anonymous
There is a trick way to achieve this
First create a flexible height gallery (this will be a must) since we will hide all elements within gallery template when a condition is met
Once you design the gallery template, group all elements
Next lets assue you want to filter your gallery elements by the mutli choice field
The gallery items property will be your data source - no filtering here
why because - the moment you add filtering on muli choice field - it will throw delegation warning
Next in your gallery elements, make sure you have 1 field showcasing the multi choice fields selected
example :- this can be a text field - and you can set its text property to
Concat(ThisItem.MultiChoiceField,Value &";")
Lets say this is added to a label called LabelMultiChoice
This will show all values semi colon seperated
Next set the visibility on the grouped elements of the gallery
Visible set to
"filter value" in LabelMultiChoice.Text
where filter value can be replaced by what you want to search
So basically gallery will continue to function as is, but will hide the multie line choice rows when the criteria does not match
Let me know what you think
You might have just given me my next blog idea
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly