Hi @BenGillard,
Do you want to check if the Patch formula executes successfully?
Based on the needs that you mentioned, I think the Errors function could achieve your needs. I have made a test on my side, please check the following workaround:
Set the OnSelect property of the "Patch" button to following formula:
If(
IsEmpty(Errors('20190108_MainList', Patch('20190108_MainList', Defaults('20190108_MainList'),{Title: "PowerApps"}))),
Notify("Patch Record Successfully!",NotificationType.Success),
Notify("Patch Record Failed!", NotificationType.Error)
)
On your side, you should type following:
If(
IsEmpty(Errors(PIOT, Patch(PIOT, Defaults(PIOT), Form2.Updates, Form3.Updates, Form4.Updates, Form5.Updates))),
Notify("Patch Record Successfully!", NotificationType.Success),
Notify("Patch Record Failed!", NotificationType.Error)
)
Please check the attached GIF screeshot for more details:
More details about Errors function, please check the following article:
Errors function
Best regards,