Hi @TMMK64571 ,
How do you navigate from your first screenshot form to your second screenshot form? Via pressing the "SUBMIT & GO TO SEND" button?
Do you want to pass the data card values from the first Form to your second form after your submit your first form?
Based on the needs that you mentioned, I think a global variable could achieve your needs. I have made a test on my side, please take a try with the following workaround:
Set the OnSuccess property of the Form1 (First form) to following:
Set(CurrentSubmittedRecord, Form1.LastSubmit) /* <- Add this formula */
Then within the second form in your "Submit to Purchasing" screen, you could referenve the values from the submitted form1 data through the following formula:
CurrentSubmittedRecord.ColumnName
Set the Default property of the Text Input box within Title data card to following:
CurrentSubmittedRecord.Description
Set the Default property of the Text Input box within Requester data card to following:
CurrentSubmittedRecord.'Requester Name'
Set the Default property of the Text Input box within Email data card to following:
CurrentSubmittedRecord.Email
Set the Default property of the Text Input box within 'Number with Leading Zeroes' data card to following:
CurrentSubmittedRecord.'Req Number'
Set the Default property of the RUSH Toggle control to following:
CurrentSubmittedRecord.RUSH
Please consider take a try with above solution, then check if the issue is solved.
Best regards,