Is it possible for me to run multiple flows with from one button in Power Apps?
I can't seem to get both flows to run if statement is true, it would either skip the first run or fail the 2nd run. When it fails, the varID returns blank. Below is the current formula for the OnSelect
Set(varID, ThisItem.ID);
If(
CountRows(DataCardValue1.Attachments) > 0,
//true
SubmitForm(EditItemForm); 'SendNotification'.Run(varID); 'SaveAttach'.Run(varID),
//false
SubmitForm(EditItemForm); 'SendNotification'.Run(varID);
)