Hi there, I'm creating a PowerApp and my screen basically contains a Data Table and above it 4 ComboBoxes and one Dropdown.
Under settings I changed my Data row limit to 7 (default is 500 and max is 2000), but I did 7 to see what is and what is not affected with this 500 row limit thing.
My PowerApp is connected to SQL and when I load my data directly is doesn't have any issue with the row limit in PowerApp. For this screen I use a View that I created in SQL, since I had to do some lookup values for a datatable and SQL was the most efficient way to do it.
Now I'm stuck on the following:
I want to filter my data table with multiple ComboBoxes, but for some reason I can't load more than 7 rows (I know I put 7 as a limit, but I thought this would not be affected with the delegation issue?)
So my ComboBox looks like this:
Items = '[dbo].[Statuses]'.Status_Name
and
Items = GeneralInfoView.Department_Name
- '[dbo].[Statuses]' is my table in SQL and Status_Name is the column name.
- GeneralInfoView is my view in SQL and Department_Name is the column name.
I thought it had something to do with Distinct, but even when I changed it to above scripts, it doesn't show me more than 7. Obviously I will change that limit to 500 or 2000, but even then it is not enough. How is it possible to get more than 2000 options in your filter? Is there a way for that?
Thanks in advance!