Hi@Anthony_D,
Based on the issue that you mentioned, do you want to filter the table based on the search box?
Could you please share a bit more about the scenario:
- What is your data source, an Excel table?
- Which control do you use to display and filter the data?
- What is your formula, how you set the related Search() function?
I assume that you have an Excel table as data source, a Gallery to display and filter the data, a TextInput to search for the key word.
Here is my scenario, please take a try as below.
Connect OneDrive to your App.
Add a TextInput control.
Insert a Gallery and set the Items property as below:
Search(Table1,TextInput3.Text,"ID","CustomerName") // Table is my table name in Excel.
Note: All the column type should be Text type only for that the Search() function only allows a column containing text or string to be searched.
Or you could use the StartsWith() function, set the Items property as follows:
Filter(Table1,StartsWith(ID,TextInput3.Text) Or StartsWith(CustomerName,TextInput3.Text))
Hope it could help.
Best Regards,
Qi