I have two Power Apps integrated forms working from two different SharePoint list (A & B). Both forms work and are identical but for some slight variations in dropdown item choices.
In list 'A' everything works fine.
In list 'B' I have this issue.
When I open an existing entry from the SP list, the form opens with data from the first entry, not the one I selected. This happens no matter which past entry I choose.
I have reviewed a number of articles and tested several variations to the Item property of the form, but I still get the same result.
Currently using: If(IsBlank(SharePointIntegration.Selected) || false,First([@'SPListName13']),SharePointIntegration.Selected)
I have also tried;
- LookUp(SF-52 Promotions Up to GS-13,ID=SharePointIntegration.SelectedListItemID)
- If( IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First('SPListName13'), SharePointIntegration.Selected )
I have reviewed the working model and compared the two integrated form settings in good detail. Maybe I have been looking at this too long, but I am not seeing any variation between the two. But still, one works and the other doesn't.
Any help would be greatly appreciated.
Thanks.