Link to view that I want to just use the auto if nothing is selected from my form

I have a form, screen person, where my recruiters can make a decision on a candidate. They have options deny, interview, offer job. They can also just pick nothing if no decision is reached. On any of the 3 options I want to navigate to a different form but if they pick nothing I want the action to use the automatic option from my form. I have 2 different places that they can reach the screen form from and don’t have a manor to determine which they came from but I want them to return to that view. Is that possible?
IFS(
[DECISION]=“Send Offer”,LINKTOFORM(“Send Offer Letter”,),
[DECISION]=“Schedule Interview”,LINKTOFORM(“Set up Interview”,),
[DECISION]=“Disposition”,LINKTOFORM(" “,),
true,” "
)
I want the true option to be the auto return.

Solved Solved
0 2 300
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

To use auto, configure your navigation action to only fire if you want the user to navigate elsewhere.

Target:

SWITCH(
  [DECISION],
  “Send Offer”,
    LINKTOFORM(...),
  “Schedule Interview”,
    LINKTOFORM(...),
  “Disposition”,
    LINKTOFORM(...),
  ""
)

Only if this condition is true:

ISNOTBLANK([DECISION])

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

To use auto, configure your navigation action to only fire if you want the user to navigate elsewhere.

Target:

SWITCH(
  [DECISION],
  “Send Offer”,
    LINKTOFORM(...),
  “Schedule Interview”,
    LINKTOFORM(...),
  “Disposition”,
    LINKTOFORM(...),
  ""
)

Only if this condition is true:

ISNOTBLANK([DECISION])

Works great

Top Labels in this Space