Canvas Apps
How To Perform Both Filter And Search In Gallery Using PowerApps
Perform Search and Filter together in Gallery control.
2
Tags :
Perform Search and Filter together in Gallery control.
Subscribe to our weekly newsletter below and never miss out the latest updates
Search([@Event], TextSearchBox1_2.Text, “Dealer1Value”, “Dealer2Value”, “Dealer3Value”,”Dealer4Value”, “Dealer5Value”, “Dealer6Value”,”Dealer7Value”,”Dealer8Value”,”Dealer9Value”,”Dealer10Value”); && Filter(Event, Status.Value=”Open”,SortDescending1) This work until i add the filter any suggestions?
That is a syntax error. you cannot put two separate functions in the gallery item property. It should be merged like below,
Filter(Search(Event,FieldName,”Value”), field.value=”open”)