Hello,
I have a gallery and one of the columns is "Category". In this case, I have 5: A, B, C, D, E.
I have a filter pane on the left side of my gallery with a checkobx for each, labeled filtA, filtB, etc.
I need to enter a function into the Items property of my gallery that filters my gallery depending on the values selected. I tried to do this the loooooooooong way, but it is driving me nuts, where I would have to write a function like
If(filtA.Value = true, Filter(Table1, Category = "A"))
I would have to do this ^ for EVERY combination of 1, 2, 3, or 4 boxes being selected and not selected.
There has to be a better way right?