I am a dummy with no programming experience, your help is greatly appreciated!
First of all, I have a table called "Movements", with two columns - "Name" and "Location"
| Name | Location |
| Jay | Tasmania |
| Kay | Sydney |
I have created a textbox to use as a search box, named "FilterTextBox"
below is the function I used to search for the "Name" in the Gallery
| Sort(If(IsBlank(FilterTextBox),Movements,Search(Movements, FilterTextBox.Value,Name)),Name) |
How do I incorporate "Location" into the function? So that I can also search for both name and location.
Your insights and solution are much appreciated.