So I have a gallery that it's retrieving data from an excel sheet, I have it filtered and sorted with the following code, but it is not bringing me all the information, just 11 records and I have more. do you guys have any idea why?
SortByColumns(Filter(Registro,Estatus= "False",(Len(Searchbox2.Text) = 0
||
StartsWith(NombreBase, Searchbox2.Text)
)
),
"Fecha",
Descending
)
My app gathers info that users fill, with a ClearCollect and then send to an excel with a ForAll. So I use that gallery as a review of the previous records if they have a "False" status. And in another Gallery with the same code I use it to modify and update, and it has the same problem.
I checked other posts but it is different, do you guys have any ideas? How can I solve this?