Hi guys!
I have a problem regarding a large Excel list.
My app is used as an application for certain products. For someone to order a product they need to fill in a project manager and a project code. These items, the projectmanager and code are derived from an excel workbook in my onedrive business account.
The list looks like this:
| ProjectManager | ProjectName |
| John D. | Project1 |
| Carl G. | Project2 |
| John D. | Project3 |
In my app I have two dropdowns, with a distinct formula to sort the projectnames by projectmanager.
In the first dropdown I use the following code inside the Item property:
Sort(Distinct(ProjectName, 'Project Partner'), Result)
In the second dropdown where I select the projectname I have the following code:
Distinct(Filter(ProjectName, 'Project Partner'=DropDownPartner.Selected.Result),'Project Name')
"DropDownPartner" is the name of the first dropdown.
This works great. However the problem I run into is the following, the projectnames list is over 2500 rows long. And for some reason I cannot see any more items after the "S".
What is the best way to store my project data so I am able to see all projects in the list? Can I use a sharepoint list?
Thanks in advance 🙂