Hello Everyone,
I have a Gallery that displays all records from a list. I thought this would be an easy one but I'm struggling to get the search box to work. I can get it working fine with the following, but this doesn't display anything until something is entered into the search box:
Filter('LineName',ID = inpSearchBox.Text)
What I need is for all records to be displayed until an ID is entered into the search box. I've tried this and it doesn't error but it brings back no results, regardless if the search box is empty or not:
If(IsBlank(inpSearchBox), Filter('ListName',ID = inpSearchBox.Text))
What am I missing here as in my head this should be really simple? I haven't done a great deal with Gallery's and filtering so any help would be much appreciated as I'd also like to include filtering on a column called Status, one called Risk Rating and another called Meeting Details but cant even get a simple search working at the minute!
ID is the ID field, Status, Meeting Details and Risk Rating are drop downs.