Hi All,
I've created a gallery control and applied filters to it for search. Here's the formula:
Filter(
ProjectDatabase,
(IsBlank(SelectedProjectNumber) || 'Project number' = Text(SelectedProjectNumber)) &&
(IsBlank(TextInput_Search.Text) ||
TextInput_Search.Text in Text('Project number') ||
TextInput_Search.Text in 'Base item code' ||
TextInput_Search.Text in Customer ||
TextInput_Search.Text in 'Country' ||
TextInput_Search.Text in 'Offering category description' ||
TextInput_Search.Text in 'Task names')
)
The issue is, it is not searching through all of my records, which are in my excel file, and when I display the number of entries, it only has 500 rows whereas my table has around 5000+ entries.
The formula shows a warning sign as well: