hi ,
i have excel contain 9000 records and as you already know there is Limition in puliing the data .
i created Gallaery and Text Box input in order to search and present the data in the Gallaery .
since we have Limition for 2000 records i did the below :
Refresh(Table1_5);
ClearCollect(tmp_all_data , Filter(Table1_5 , KalNum = "1" ));
Collect(tmp_all_data , Filter(Table2 , KalNum ="1" ));
Collect(tmp_all_data , Filter(Table1_5 , KalNum ="3" ));
Collect(tmp_all_data , Filter(Table1_5 , KalNum ="4" ));
Collect(tmp_all_data , Filter(Table1_5 , KalNum ="5" ));
Collect(tmp_all_data , Filter(Table1_5 , KalNum ="6" ));
Collect(tmp_all_data , Filter(Table1_5 , KalNum ="7" ))
but this no collecting all the data that i have in the excel .
once i am searching in tmp_all_data it will not retrun rows above 2000 .
can you please help me ? any other idea to search and return data in exce have 9000 records .