Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Iff((14 - 7) > 0, DateDiff('today', ‘yesterday', ‘h'), 50 / 2)

    • The above formula will evaluate if the condition “14 - 7 > 0” is true or

    not.
    • false

    • If true, it will evaluate “DateDiff(’today’, ‘yesterday’, 'h')

    .
    • If false, it will evaluate “50 / 2”

  • Iff(ResponseExists([RadioQ1]), [RadioQ1] < 1, false)

    • The above formula will evaluate the condition “ResponseExists([RadioQ1])”

    .
    • If true, “[RadioQ1] < 1” will be evaluated

    .
    • If false, “false” will be evaluated

    .

Panel
bgColor#DEEBFF

DateDiff

...