Hi,
Let's say that I have Step 1 (Name, Surname, Phone number), Step 2 (Person Details), and Step 3 (Comments). Each step should be on a separate screen. I have one big table in Sharepoint, which is ready to take all that information.
I would like to create a new form in Step 1, and then, after the Name, Surname, and Phone number is filled, I would like the user to submit the form to SharePoint and move to Step 2. I would like Step 2 to find the item I am currently working on and continue with filling the personal details.
The question is: How to do this without using galleries? The only way I know to edit a form is to select it from a gallery, and here is no gallery.
Any suggestions? Thank you for your time.
Solved! Go to Solution.
Consider the following...
In your OnSuccess action of the EditForm, use a variable to set the current record:
Set(glbCurrentRecord, yourEditForm.LastSubmit)
This will set the variable to the last submitted record.
Now on your Display form, set the Item property to : glbCurrentRecord
Should give you what you want.
I hope this is helpful for you.
Consider the following...
In your OnSuccess action of the EditForm, use a variable to set the current record:
Set(glbCurrentRecord, yourEditForm.LastSubmit)
This will set the variable to the last submitted record.
Now on your Display form, set the Item property to : glbCurrentRecord
Should give you what you want.
I hope this is helpful for you.
Excellent!