Hey!
I'm having an issue with a drop down list on my app.
I have one simple radio control with 3 options (OPT1, OPT2 and OPT3) that filter the column AREA fro my database. When I select one of them, it filters the name's column with the names that correspond to the AREA selected in the radio button.
This is the formula that I'm using in items in my drop down:
SortByColumns(Distinct(Filter(MY_DATABASE;Radio_area.Selected.Value=AREA);NAMES);"Result";If(SortDescending1; Descending; Ascending))
My database is a SharePoint list with 4.500 itens. The issue is that when selected, OPT1 should populate the drop down with 68 names but it's only getting 65 of them.
The OPT2 return the 49 values and OPT3, 30 values (all correct).
If I try to change the missing names from OPT1 to OPT2, they appear correctly.
So, is there any limitation in drop down lists with large numbers?