• Resolved rocketpig3

    (@rocketpig3)


    I am trying to display an HTML content field if the output of a calculated field is within a given range.

    Editing without the wizard, I have tried:

    value<=66 & value>36
    value<=66 AND value>36

    I have also tried simply using one condition and assuming that only one output will be selected, but this has not worked (two or more outputs can be selected).

    For example:

    value<=66
    value<=33

    If given 20 it will display both.

    What’s the best way to do this?

    Thanks.

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @rocketpig3

    In Javascript the “and” operator is represented by a double ampersand: “&&”, so, the condition would be:

    
    36<value && value<=66
    

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Dependencies with multiple conditions (range of values)’ is closed to new replies.