I have a Microsoft lists table with approximately 10 000 rows. To filter this in Powerapps, I have multiple drop downs that are dependent on prior ones. This is the items from the last dropdown:
Distinct(Filter('Table', Col1 = Dropdown1.SelectedText.Value, Col2 = Dropdown1_1.SelectedText.Value, 'Col3' = Dropdown1_2.SelectedText.Value, 'Reporting Period' = Dropdown1_4.SelectedText.Value), Col4)
The issue is the gallery being filtered by these dropdowns doesn't include all the rows since Col4 is multiple lines of text. My initial understanding was that as long as the first 3 columns filter the data source to below 2000 rows, I will receive all matching rows regardless of col4 being undelegable. Is this not the case? and are there any workarounds?
Gallery Items:
Filter('Table',Col1= Dropdown1.SelectedText.Value, Col2 = Dropdown1_1.SelectedText.Value, Col3 = Dropdown1_2.SelectedText.Value, Col4 = Dropdown1_3.SelectedText.Value)