Forum Discussion

  • Perhaps post an example of what you have so far?

    Generally nesting if statements is fairly straightforward:

    when EVENT {
      if { criteria_1 } {
        if { criteria_2 } {
          do_stuff
        }
      do_stuff_if_crit_1_matched
      }
    }

    What particular problem are you having?

    --

    Aaron