Navigate from form to view of created data

Hi, I have an application which has a form for a Visit. Once the user has saved the form, I would like to navigate the user to the View of that Visit.

Create Visit => View Visit

In the Create Visit form, I am trying to use an Event Action when the form is saved (Form Saved):

JuliusSpencer_0-1678310955770.png

In the Action, if I use LINKTOROW, I got back to the home screen of the app which makes me think there was an error (is it possible to view logs of these somewhere?):

LINKTOROW("View Visit", [_THISROW].[ID])

If I use LINKTOVIEW, I can't specify the Visit (ID) so it shows the wrong Visit:

LINKTOVIEW("View Visit")

Anyone know if navigating straight to a view of created data is possible or not?

 

Solved Solved
0 1 99
1 ACCEPTED SOLUTION

Try one of the two suggested ways:

LINKTOROW([ID], "View Visit")

or

LINKTOROW([_THISROW], "View Visit")

I think you have the order backwards in the LINKTOROW() function.

 

View solution in original post

1 REPLY 1

Try one of the two suggested ways:

LINKTOROW([ID], "View Visit")

or

LINKTOROW([_THISROW], "View Visit")

I think you have the order backwards in the LINKTOROW() function.

 

Top Labels in this Space