checking for dups
I have a formula that is checking the sharepoint list for duplicates using a powerapps form, the formula works great. My issue is -I receive the Duplicate entry found error, but I would like to give the user the option to edit the duplicate that was found without have to close the form and do a search. How do I accomplish this?
I have a formula that is checking the sharepoint list for duplicates using a powerapps form, the formula works great. My issue is -I receive the Duplicate entry found error, but I would like to give the user the option to edit the duplicate that was found without have to close the form and do a search. How do I accomplish this? If( !IsBlank( LookUp(‘GOS Daily Log v24’, (Title = Text(Self.Text))).Title ), Notify(“Duplicate Found”, NotificationType.Error)) Thank you for any help/guidance, greatly appreciated! Ren Read More