Also sorry I forgot to ask this question to you in previous post.
Do u want me to add this whole part of formula in Onsuccessproperty of the form?
If(CorrespondenceForm.ErrorKind = ErrorKind.None,
UpdateIf('[dbo].[TableName]', Id = CorrespondenceForm.LastSubmit.Id, {Status:"Sending"});
UpdateContext({BpeRecord: LookUp('[dbo].[TableName]',VendorId = VendorGallery.Selected.Id && ProjectId = selectedItemId && ProjectSource = projectSource)});
Flow.Run(BpeRecord.ToEmails,BpeRecord.Subject,BpeRecord.Body,If(IsBlank(BpeRecord.CcEmails),"",BpeRecord.CcEmails),BpeRecord.Id,selectedItemId,projectSource,VendorId,User().FullName,User().Email);
ViewForm(CorrespondenceForm));
And in Send button(Onselect):
SubmitForm(CorrespondenceForm);
ResetForm(CorrespondenceForm);
UpdateContext({vendorLocked: false, BpeRecord: Blank()});
Refresh('[dbo].[TableName]')
And I want make the form reeditable sometimes flow not trigger?
Inputs can guide in correct direction.
Thanks micheal!