Hi @gabequinn__ ,
In Powerapps.
Usually, we can use formula <Set(var,New_TM_Form.LastSubmit.ID)> to save it. It's a global variable in the app.
We can use the formula in the button when we submit the form. SubmitForm(form);Set(var,New_TM_Form.LastSubmit.ID)
Or we can use it on onsuccess attribute of the form:
Set(var,New_TM_Form.LastSubmit.ID)
The benefit is that it allows us to troubleshoot the problem simply.
After creating the variable, we can add a label to display the value of the variable.
Best Regards,
Wearsky