Hello,
I have a simple Canvas app that includes a gallery that lists data from an Excel spreadsheet. The Edit form correctly displays the corresponding detailed data. Unfortunately, the gallery is displaying incorrect unique IDs for the items and I can't figure out why. Since the unique ID is incorrect, the resulting updates via the Edit form are updating the wrong row.
Gallery > Text = ThisItem.ID (same for other fields in gallery: ThisItem.ContactName, ThisItem.Title, etc.)
Gallery > OnSelect = ThisItem.ID Select(Parent) (same for other fields in gallery: ThisItem.ContactName, ThisItem.Title, etc.).
Data updated correctly before I configured the gallery > Items > SortByColumns(Filter(Contacts,StartsWith(ContactName,txtSearchBox.Text)),"ContactName",SortOrder.Ascending)
It's odd that all of the fields are configured similarly, however, the ID field pulls "1" for the first row in the spreadsheet, instead of "256" which is what it should be.
Help!
Thank you.