Hello. I have an app where the new button collects the user name and the time and date. Currently the button populates a new entry in the gallery and to add more details the user needs to then select the item in the gallery and then edit.
How do I set the button to continue to collect that information but also navigate directly to the edit screen for that entry?
My button formula for OnSelect is:
Patch(IR, {Title: User().FullName, 'Incident Date and Time': Now()})
I tried adding ; Navigate(EditScreen1) but that seems to not work all the time. Sometimes it navigates to the new form and sometimes it navigates to another completed form.