I have a gallery ModulesGallery that is populated from data source Modules_Locations. The gallery has 2 items, MIN and Status.
There is a button that onSelect populates a variable varFilterStatus with "Green".
I want the gallery to then be filtered to all records with Status="Green" so have the Items property of the gallery as
Filter(Module_Locations,Status= varFilterStatus);
The ; at the end of the Filter function above has a red line under it with the error
Expected operator. We expect an operator such as +, *, or & at this point in the function.
I do not see that requirement in the syntax of the Filter function. Can someone please tell me what I am doing wrong.