Enum Base Type App

Hello guys,

i have one column with enum type in my app which is [safety_tool]. The [safety_tool] column has two values which are "Hazard Prediction" and "safety prediction" with buttons input mode. When I select the "safety prediction" button, I want it to open another form in another table. Let's say the table name is "question" and the form name is "question_form". I need your help how to make it possible. Thank you for your help.

 

cc @Steve 

Solved Solved
0 4 99
2 ACCEPTED SOLUTIONS

Create an action using LINKTOFORM

https://help.appsheet.com/en/articles/2357261-linktoform

https://help.appsheet.com/en/articles/1090811-dereference-expressions <- WRONG!! sorry

You can add a condition [safety_tool]="safety prediction"

Set this action to your form saved event.

View solution in original post

You can have a Form Saved action with LINKTOFORM(), so that once you save your original form, the action would take you to the corresponding tool form. 

View solution in original post

4 REPLIES 4

Create an action using LINKTOFORM

https://help.appsheet.com/en/articles/2357261-linktoform

https://help.appsheet.com/en/articles/1090811-dereference-expressions <- WRONG!! sorry

You can add a condition [safety_tool]="safety prediction"

Set this action to your form saved event.

Thank you sir

You can have a Form Saved action with LINKTOFORM(), so that once you save your original form, the action would take you to the corresponding tool form. 

Thank you Sir