Is delegation still not available for Dynamics 365? It says that it is in this post: https://powerapps.microsoft.com/en-us/tutorials/delegation-overview/ however, I have tried doing a row count for a filtered datasource and I still don't get all of my records.
If I try this I get a result of 500:
CountRows(Leads)
and if I apply this filter on my data I would expect a count of 6, but I only get 3:
CountRows(Filter(Leads, firstname = "Aaron"))
The queries above were just tests, but the main thing I am trying to do is LookUp a specific record from the DataSource using a LeadId and then show a few values from that Lead in a form (name, email, etc.). I've tried three different Lead Ids, one of them works, while the other two do not return any data (even though I can see values in CRM). I'm guessing that the 500 record limit is in place still and that these records are not in my DataSource.
So I'm guessing that delegation isn't working or I'm doing something wrong?