.I am creating a new form and have two screens; one for editing and submitting an item to a SharePoint list and the other is the mainpage to view. How do I link these together?

.I am creating a new form and have two screens; one for editing and submitting an item to a SharePoint list and the other is the mainpage to view. How do I link these together?
Hi @PBInonpro
You can use the "Navigate" formula to get to your Edit Form screen. For example, on your main screen where you view the items, maybe in a Gallery, you could have an arrow. The "OnSelect" formula for that arrow would be something like:
Navigate(EditScreen, ScreenTransition.None)
For your edit form, you would have an icon such as a checkmark to submit the form and navigate back to the view screen:
SubmitForm(EditForm);Back()