Hi All,
I have a 'Request Submission'-type PowerApp with a basic home screen (screenHome) / gallery and button to submit a new request which navigates to "screenNewReq".
On screenNewReq is an Edit Form (frmNewReqMain) where they populate the necessary data points. Upon completion, they click the "Submit Request" button which uses SubmitForm to post the data to a SharePoint list.
On this same screen, I have a paperclip icon which brings up a pseudo-popup screen:

This isn't actually a different screen - just a rectangle that's formatted to look like a pop-up (the OnSelect for the paperclip icon sets a contextual variable to "true" which makes it visible).
On this "popup screen" is a separate Edit Form (frmNewReqScreenshot) which contains 1 Attachment Control and nothing else. The control is tied to an attachment field on the same SharePoint list as the fields on the main form (frmNewReqMain).
I'm trying to combine the data from both forms - frmNewReqMain and frmNewReqScreenshot - prior to the form submission. I know I could probably add a button to the "popup screen" and set the OnSelect for that button to Patch the attached file to the respective attachment field on the SharePoint list, but it seems a bit like using a sledgehammer to crack open a nut. Obviously another route would be to simply get rid of the "popup" and just add the attachment control/field to frmNewReqMain, but for the sake of this app/form, I prefer the experience of clicking on the attachment icon (paperclip) and then displaying my phony popup screen.
I'm sure there's a blindingly obvious solution, but I seem to be stumped at the moment. 😕
Thanks!