Hi all,
There is a hard static data import max per table of 15000. In experimenting with US postal code table, 42,523 rows, I split it into 3 tables and imported all three into one app. I set up formula as follows in the magnifying icon:
Clear(allzip);Concurrent(ClearCollect(zip1,Search(Table1,TextSearchBox1.Text, "City")),ClearCollect(zip2,Search (Table2,TextSearchBox1.Text, "City")) , ClearCollect(zip3,Search(Table3,TextSearchBox1.Text,"City"))) ; Collect(allzip,zip2); Collect(allzip,zip2);Collect(allzip,zip3)
I set the Gallery Items property to allzip. After typing a city in the searchbox, and clicking on the magnifying glass the gallery filled almost instantaneously with data from all three tables. 