Hey,
I just started playing around with Dataverse and trying to find out well large Datasets work in a Powerapp.
So: I have some toy data with 50k rows or so. Each entry has a random country in the "location" column.
I'd like to create a Dropdown with all possible countries and filter my data by this selected country.
Here's the problem, I tried setting the Items of my Dropdown to:
Distinct(myData, location)
This is the way you'd expect it but due to Disctint not being delegable, this only returns the distinct location values for the first 2000 entries. How do I get all the distinct values?
(Just to clarify: These are real countries, so there should be around 200, I think)
I thought I might be able to set up a view in Dataverse with either Distinct or GroupBy but I can't find out how to do that either...