Hi community,
I have a PowerApps that uses flow to upload attachments from PowerApps to SharePoint. The flow is trigger by PowerApps, and at the end of the flow, I have a action of "Respond to PowerApps or flow" where I set two variables:
SharePointFileLink: where it retrieves the "Path" of the attachment in SharePoint
SharePointItemid: where it retrieves the "ItemID" of the attachment in SharePoint (see attached pic) 
I then have the PowerApps formula as :
Set(varFilePath, EasyUpload.Run(Last(Attachments_File_Test.Attachments).Name, varBase64Only).sharepointfilelink);
Is there anyway that I can get both variables, sharepointfilelink and SharePointItemid in one Set formula? Because I don't want to have the flow to run twice.
I am not too sure how to retrieve both variables with the Set formula I have.
Any help is appreciated, thank you.