Hello!
I have a gallery in PowerApps, I want to grab data from Excel which has more than 20.000rows. But, I know that PowerApps can grab data from excel less than 2.000. So, I want to fillter it.
I'm similar using this formula,
reload button: ClearCollect(POnumber ,Filter(Perform,Value(No)<=2000), Sort(Perform,No,SortOrder.Descending))
text input: Distinct(POnumber, Order)
then, I can get the lastest 2000 rows form excel.
But, now, I want to get at least 1500 rows excel, which has 'Received Date' value 3month from now and 'Delivery Date' value blank.

How to filter that data? Thankyou.