Expand my Community achievements bar.

whyisthisme
whyisthisme
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • If you are happy to use Formcalc you could do it like this:Have 8 Numeric Fields called NumericField1 so they would be NumericField1[0], NumericField1[1] etc. and 8 checkboxes called CheckBox1 and they would be CheckBox1[0], CheckBox1[1] etc. and then the total field which say would be NumericField2...

    Type

    Questions

    Views

    1.1K

    Likes

    0

    Replies

    0
  • In your password field you will need to put something like (in Formcalc):If ($ == "whateveryourpasswordis") then     otherfield1.access = "open"     otherfield2.access = "open" //etc that will make them user enabledendif

    Type

    Questions

    Views

    364

    Likes

    0

    Replies

    0
  • if you want to do it in formcalc it could look like this:if (NumericField1 >= 16 and NumericField1 <=25) then    $ = "Low Risk"elseif (NumericField1 >= 26 and NumericField1 <=33) then    $ = "Moderate Risk"elseif (NumericField1 >= 34 and NumericField1 <=42) then    $ = "High Risk"    endifjust make ...

    Type

    Questions

    Views

    524

    Like

    1

    Replies

    0
  • Sorry please ignore this post. I was thinking in FormCalc mode rather than javascript!I don't know if this will solve your problem but you haven't put an endif to close your if statement. Also you don't need the else 'do nothing' part of the statement, if your variables do not meet the criteria then...

    Type

    Questions

    Views

    356

    Like

    1

    Replies

    0