Restriction of Form Submission unless Calculation above a threshold? | Community
Skip to main content
Answered

Restriction of Form Submission unless Calculation above a threshold?


I’m looking to assist a client. They want to add a form that submits into mondaydotcom. They’ve asked that, throughout the form, they change certain dropdowns and add certain numbers.

Towards the end of the form, this calculates a total. If the total is below a certain amount, they don’t want the user to be able to submit the form. Is this possible?

Best answer by john.desborough

@avrij - use some custom variables in something like this: 

  • create variable called v_threshold
  • logic rules:
    • if “cost answer’ is greater than 0 then add ‘cost answer to to v_threshold
    • if ‘cost answer’ is greater than 0 then divide v_threshold by 2 (to get your 50% value) 
    • if v_threshold is less than 500 (or what ever amount is your cutoff) then go to statement page X 
      • on this statement page you have the message that they are too low and need to go back and do it again AND your logic rule need to ‘always go to’ the question to try again

des

View original

7 replies

Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • 14904 replies
  • December 8, 2023

Hi @avrij Happy Friday! We don’t necessarily have a way to prevent someone from submitting the form or ending it without submission, but you could create a logic jump that would send them backwards in the form. The downside to this is that they would be able to change their answers and thus, move forward to submit their responses. 


  • Author
  • Explorer
  • 4 replies
  • December 8, 2023
Liz wrote:

Hi @avrij Happy Friday! We don’t necessarily have a way to prevent someone from submitting the form or ending it without submission, but you could create a logic jump that would send them backwards in the form. The downside to this is that they would be able to change their answers and thus, move forward to submit their responses. 

That might work @Liz - forgive me, not used TypeForm before.

We do want them to change their answers - imagine it like a quote. Say they put £1000 in. Down the form, they select ‘10% discount’ and a maybe ‘payment plan 4’. If this puts the figure down to £500, they want the person to either not submit the form or have a pop up saying ‘amount too low, please return to your advisor’ or something to that effect. Is this possible?


Liz
Community Team
Forum|alt.badge.img+5
  • Tech Community Advocate
  • 14904 replies
  • December 11, 2023

Hi @avrij Got it, thanks! When you have them returning to their advisor, is that referencing in the form? If so, I believe setting up a logic jump that would send them backwards to edit the answer should work. 


  • Author
  • Explorer
  • 4 replies
  • December 12, 2023
Liz wrote:

Hi @avrij Got it, thanks! When you have them returning to their advisor, is that referencing in the form? If so, I believe setting up a logic jump that would send them backwards to edit the answer should work. 

Hi Liz,

It could be, yeah. Perhaps in the question about the budget. Let me give it a go!


  • Author
  • Explorer
  • 4 replies
  • December 12, 2023

@Liz So I’ve tried this.

Put in 1000 cost.
Ask them if discount.
Yes say yes.
Ask them how much.
For example, they say 50%.

Can I get a logic hook to go ‘50% of 1000 is 500, that number is below what is acceptable, send them back to a previous question’?

I can’t seem to use a calculation as a condition in logic.


john.desborough
Forum|alt.badge.img+6
  • Certified Partner & Champion
  • 5271 replies
  • Answer
  • December 12, 2023

@avrij - use some custom variables in something like this: 

  • create variable called v_threshold
  • logic rules:
    • if “cost answer’ is greater than 0 then add ‘cost answer to to v_threshold
    • if ‘cost answer’ is greater than 0 then divide v_threshold by 2 (to get your 50% value) 
    • if v_threshold is less than 500 (or what ever amount is your cutoff) then go to statement page X 
      • on this statement page you have the message that they are too low and need to go back and do it again AND your logic rule need to ‘always go to’ the question to try again

des


  • Author
  • Explorer
  • 4 replies
  • December 12, 2023
john.desborough wrote:

@avrij - use some custom variables in something like this: 

  • create variable called v_threshold
  • logic rules:
    • if “cost answer’ is greater than 0 then add ‘cost answer to to v_threshold
    • if ‘cost answer’ is greater than 0 then divide v_threshold by 2 (to get your 50% value) 
    • if v_threshold is less than 500 (or what ever amount is your cutoff) then go to statement page X 
      • on this statement page you have the message that they are too low and need to go back and do it again AND your logic rule need to ‘always go to’ the question to try again

des

But the v_threshold is always a set number. So “if v_threshold is less than 500 (or what ever amount is your cutoff) then go to statement page X” wouldn’t make sense because I don’t need type form to look at a static number. I need it to look at a calculated one.


v_threhold=600
Question 1: Cost?
A: 1000

Question 2: Discount?
A: Yes

Question 3: How much?
A: 50%

Calculation: Q1/1000*Q3

If “Calculation”<v_threshold, send back to previous question.

Is that possible?


Reply