Hi, i have a gallery with with 2 filters (1 dropdown and 1 search box). The items property is set to
If(IsBlank(
Dropdown2.Selected.Value),PartsRequestCollection,
Search(
Filter(PartsRequestCollection,
Status.Value = Dropdown2.Selected.Value),
LookupSearch.Text,"OrderedFrom"))
When nothing is selected, all the gallery records are displayed, however, i cant filter the search with the LookupSearch textinput. Once i filter by dropdown, the lookupSearch textinput filters works fine. Any suggestions on how i can get the LookupSearch to work when all records are displayed? Thanks