• Resolved stefanobt

    (@stefanobt)


    Hi, I would like to know if it’s possible to add multiple values to a condition.

    Example:

    [select* TEST “1” “2” “3” “4”]

    if TEST equals 1 then show GROUP A
    if TEST equals “2” “3” “4” then show GROUP B

    Thank you,
    Stefano

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jules Colle

    (@jules-colle)

    No, you need to create a new line per option. Like so:

    if TEST equals 1 then show GROUP A
    if TEST equals 2 then show GROUP B
    if TEST equals 3 then show GROUP B
    if TEST equals 4 then show GROUP B

    Thread Starter stefanobt

    (@stefanobt)

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Multiple Value Condition’ is closed to new replies.