Not signed in (Sign In)

Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    I have a form that calculates a potential reimbursement amount according to the client's parameters.

    I have no issue with the formula, but they have decided to institute a maximum amount. So I need to say something like:
    If(InputValue*.5 > 250, 250, else InputValue * .5)

    Thoughts?
    • CommentAuthordbuschho
    • CommentTimeFeb 7th 2011
     
    Hello,

    if(InputValue*0.5 > 250){250}else{InputValue*0.5}

    should work as a formula on the FormBuilder for a field. Note that case is important, be sure to "if" not "IF".

    Happy to help,
    FA Support.