I have a collection for an integrated SharePoint list app. The collection creates a table of records based on the referenced SharePoint list. My objective is pull distinct value from one column from the SharePoint list in the look up.
On the FormScreen, OnVisible property I have defined a collection as: ClearCollect(firmnameBlank,{Result:""}); Collect(firmnameBlank,'File Summary').
I am doing a lookup to the collections on the Items property for a dropdown control. Items: Distinct(firmnameBlank, FirmName).
I came across a problem where the collections was limited to 500 records. I have updated settings of the Powerapp for the data row limit to 2000 to get around this issue.
When I go to the Collections in the Variable section of powerapp, the table is 509 rows.
Question: Is there better way to grab the one field in the lookup? I just care about distinct firm name from the table.