Submit button appearing all of a sudden | Community
Skip to main content
Answered

Submit button appearing all of a sudden

  • May 22, 2021
  • 1 reply
  • 93 views

I have seen other people in the community talking about this issue, but can’t find the root cause. I may need to hire a consultant, but I’ll try one more time here to see if I can get this resolved.

I have a pretty simple logic jump sequence that I have shown below.

2B asks “how long” you have been practicing a skill with a 5 point survey.

S2.2, S2.3, and S2.4 are the jumps based on their choices.

If the user does not pick ANY choice, but just tries to swipe by… the Submit button comes up.

 

I can’t figure out why.

 

The “In ALL other cases jump to” option at the very end of these screen shots is something that I have never really understood. There are “no other cases” that I have left out. all choices (1-5) have been accounted for in the jumps (if I did it correctly).

Should I leave “ALL other cases” blank? Or put something in there? 

Thanks!

 

 

 

 

Best answer by john.desborough

@steve - quick suggestion on the logic jumps: in this case it looks like they may be evaluating the selections as text rather than numbers, hence why the gt and lt statement is not working

 

rather than use the greater than 1 and less than 4 statement, try one of the following to see if that works properly

  • change the order of evaluation ie q2b=5 then jumpto as the the first option 
  • if q2b =2 or q2b=3 or q2b=4 then go to … 
  • then q2b=1

another possible solution is:

  • if q2b=5 jumpto s2.4
  • if q2b=1 jumpto s2.2
  • for all other answers jumpto s2.3

 give these at try and see if that works

 

des

View original

john.desborough
Forum|alt.badge.img+6

@steve - quick suggestion on the logic jumps: in this case it looks like they may be evaluating the selections as text rather than numbers, hence why the gt and lt statement is not working

 

rather than use the greater than 1 and less than 4 statement, try one of the following to see if that works properly

  • change the order of evaluation ie q2b=5 then jumpto as the the first option 
  • if q2b =2 or q2b=3 or q2b=4 then go to … 
  • then q2b=1

another possible solution is:

  • if q2b=5 jumpto s2.4
  • if q2b=1 jumpto s2.2
  • for all other answers jumpto s2.3

 give these at try and see if that works

 

des


Reply