I am trying to filter a gallery based on a drop down. The table is Product_Enhancement_Requests, the column for fitlering is named Product_x0020_Area, the dropdown is named dropdown1 and items in the dropdown are set to ["Admin", "Alerts", "Benchmark"]. In the Gallery the Items is set to:
Filter(Product_Enhancement_Requests,Dropdown1.Selected.Value in "Product_x0020_Area")
There is no syntax error so I believe the syntax is correct.
However, the gallery gives no results for any of the options selected in the drop down. There are records with these values in the table (in a SharePoint List).
I have also tried using the following filter syntax but these didn't work either:
Filter([@Product_Enhancement_Requests],Dropdown1.Selected.Value in "Product_x0020_Area")
Filter([@Product_Enhancement_Requests],"Product_x0020_Area"=Dropdown1.Selected.Value)
Filter(Product_Enhancement_Requests,"Product_x0020_Area"=Dropdown1.Selected.Value)
This seems like it should be a very simple filter statement but I cannot get it to work. Please help.