I have two buttons on the Edit Form Screen.
One is the default save button which I added a Navigate action to.
SubmitForm([@EditForm1]); Navigate(BrowseScreen1)
It does submit the edits to the existing Sharepoint record and execute the associated Flow. It does not navigate back to the Browse screen. It stays on the Edit screen.
A second button was initially created to send an email with the PenInput. I also tried to add the Submit action and navigate action.
Office365Outlook.SendEmailV2(DataCardValue19.Text, DataCardKey10&" "&"#"& DataCardValue10.Text, "",{Attachments:Table({Name:"Test.jpg",ContentBytes:PenInput1.Image,'@odata.type':""})}); SubmitForm(EditForm1); Navigate(BrowseScreen1)
It also executes the first action, but neither of the two additional actions.
I have tried single semi-colons, double semi-colons (which causes a formula error) and both having a space after the semi-colon and not having a space after the semi-colon.
What am I not doing correctly?