I have a SPO List that I've created a PowerApps form for. I created this form and it has been working great, but recently I discovered it is not populating existing data when trying to view or edit a list item. Let me reiterate: nothing in this app has changed since it last worked, I am the only one with access to the app, so this malfunction is driving me insaine.
I've already searched the forum and can't find a solution that works, and scrubbing through my form I can't find ANYTHING that would cause this issue
Some info to get started:
SharePointIntegration > Advanced > OnNew: NewForm(SharePointForm1)
SharePointIntegration > Advanced > OnEdit: EditForm(SharePointForm1)
SharePointIntegration > Advanced > OnView: ViewForm(SharePointForm1)
SharePointForm1 > Properties > Default Mode: Edit
SharepointForm1 > Advanced > DefaultMode: FormMode.Edit
SharepointForm1 > Advanced > Item: If(IsBlank(SharePointIntegration.Selected) || false,First([@'3D Scanner Reservations']),SharePointIntegration.Selected)
Replacing 'Item' with the following returns an error "Invalid argument type (Record). Expecting a Table value instead"
If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First('YourListName'),SharePointIntegration.Selected)
Am I missing something? Is there some other hidden setting I need to check? Please help me lol