Hello!
I have already created a working "Submit Form" that will display a pop-up for a success if required information is filled out, and an error message for when required information is missing... Now, one thing I am trying to add to this success pop-up is a text that displays the most recent form/list ID for the user to store for future referencing purposes.
I have found a few results via Google and this forum on how to get the last list ID, however, I am still confused.
In my "Submit Form" button, I have the following formula:
IfError(Patch('DATABASE NAME',Defaults('DATABASE NAME'),Form1.Updates,Form2.Updates,Form3.Updates,Form4.Updates,Form5.Updates,Form6.Updates);Set(varShowPopup1,true);Set(varShowPopup2,false),Set(varShowPopup2,true);Set(varShowPopup1,false))
For reference, "varShowPopup1" is the "Submission Confirmed" pop-up and "varShowPopup2" is the "Error" pop-up. I have customized the design of the screen by utilizing multiple forms, hence the long "Updates" portion.
Is it possible to display the most recent form ID only when it successfully submits? And display this on the pop-up? Or is there a better solution that I should explore instead?