I’m trying to filter my horizontal gallery using the vertical gallery(Product category gallery),
2 dropdowns(Dropdown_price,Dropdown_cat) for listprice and product category respectively.
A search box(Textinput1) for product name and product number.
Data source-Table1
Currently I can search for items via the category drop-down and search box but the price drop-down and vertical gallery are not working.
The price drop-down is showing prices with no currency.
With({_SortOrder:If(Dropdown_price.Selected.Value="Sort:Ascending",SortOrder.Ascending,SortOrder.Descending)},SortByColumns(Search(Filter(Table1,Dropdown_cat.Selected.Value="All"||ProductCategory=Dropdown_cat.Selected.Value),TextInput1.Text,"ProductName","ProductNumber"),"ListPrice",_SortOrder))
Please help me analyze the above formula and tell me how to proceed so I can filter correctly.
Thank you so much.