Hi Team - I have a very simple Canvas App where users can log a query. When a user logs a new query onto the form the app navigates them to the "Success Page". (using the form OnSuccess function).
Now admin team have an additional field in the form which they can change the status of the query to "complete".
But each time they change the status and click on the submit button it ALSO takes them to the "Success Page". I was wondering if there is a way so the app will ONLY navigate to the "Success page" IF it is a new form only? I have used the formula below but it doesn't work. Any help would be much appreciated.
If(EditForm1.Mode.New,Navigate(SuccessPage),Navigate(EditScreen1))