
Hi team,
I have built an app using gallery where it has some set of questions, user gives his/her responses for the questions and submits it.
It happens monthly once which I have done it.
Now I have to give user to edit their old responses and view their responses.
Please do let me know how can I achieve this.
Thanks in advance !
Add a gallery and give SharePoint list name as a data source. Display items in that gallery on one screen and on the second screen add an edit form.
On screen 1. add this code to the navigation arrow on the gallery.
EditForm(Form1);Set(varItem,ThisItem.ID);Navigate(Screen2);
Now on screen2 where form is. Write this code in item property of the form.
LookUp(ListName,ID=varItem)
What the above code does is. It will display all the old entries in the gallery on one screen and once you select the item in the gallery it will take you to a form where you can edit the entries.