Hi All i am writing below formula to patch people picker column however when it goes blank it show error notification in PowerApps everything works fine but i don't want to show error notification .
Any ways to get remove error notification if not then how i can write condition in patch that if it people picker is blank perform nothing
Set(
varloaderReq,
true
);
UpdateContext({vartimer: true});
If(
!Form3.Valid,
// Then
SubmitForm(Form3),
// Else
Patch(
POAMaster,
{ID: VarID},
{
NextAction: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & DataCardValue77.Selected.Email,
Department: "",
DisplayName: DataCardValue77.Selected.DisplayName,
Email: DataCardValue77.Selected.Email,
JobTitle: "",
Picture: ""
}
}
);
Patch(
POAMaster,
{ID: VarID},
Form3.Updates
);
Set(
varloaderReq,
false
);
Navigate(
MyItems,
ScreenTransition.None
)
);

Report
All responses (
Answers (