Hello!
I have a problem filtering my Gallery.
I use this Table to demonstrate the idea of what i am trying to achieve ( i don't have this Table build, but i am considering building it if i can't solve this problem otherwise). I have 100 sections, so building this kind of table takes a lot of effort.
Basically what i want to do is to filter Section -column by using Group -column values and show filtered values in gallery.
SectionNameBegins -column is only there for helping in mapping Section and Group -columns together.
| Section | SectionNameBegins | Group |
| F1 | F | S |
| F2 | F | S |
| F3 | F | S |
| G1 | G | S |
| G2 | G | S |
| G3 | G | S |
| ... | ... | S |
| K1 | K | K |
| K2 | K | K |
| B1 | B | B |
| B2 | B | B |
| ... | ... | ... |
Section -column data comes from SQL-table and i have added SectionNameBegins -column to that table using AddColumn and Left functions in Gallery - Items properties.
Then i have a Collection with two columns:


I have a drop down that uses values from Collection - Group column.
For example when i choose "S" from drop down, i want the gallery show all records that has Section values "F1","F2","F3","G1",G2",G3".. and so on.
I have googled this around and tried multiple ways to solve this, but i can't put this together..