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):
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! Go to 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.
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.
User | Count |
---|---|
14 | |
11 | |
9 | |
7 | |
4 |