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 294
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