I have a page with a browse gallery and I want to show one column all the time and switch between other columns in a list. My list name is 'Isles' and my column names are "Row", "Zone 1","Zone 2","Zone 3","Zone 4","Zone 5"
I want to display Row all the time and use a dropdown to select the different zones. I linked my list and chose "Row" as the first title and put this in the subtitle label:
If(Dropdown1.Selected.Value = "Zone 1" || Dropdown1.Selected.Value = ShowColumns('Isles',"Zone 1"))
I have tried a few other things but nothing worked. Do I need to make a collection to accomplish this? My dropdown is just me defining the choices like ["Zone 1", etc].
Any help would be appreciated.