Hi Everyone,
I have a very simple app built to lookup some information from the backend Sharepoint list.
The form should have a drop down/combo box and on selection of the value, the form should bring in all of its relevant data.
The challenge here is, the list is having more than 500 records but the drop down is showing only up to 500 records. I understand that there is a limitation for the drop down box, so when i tried changing it to a combo box, it still returns only 500 records.
The formula that i wrote on the combo box is, Sort('TestList', Title,Ascending)
I don't have any filters/condition on the query. All I want is to return all of the "Title" values stored in the Sharepoint list.
all of the Title values are unique records and it is of a free text field.
Can someone please help me with the above.