|
Quota Dialog
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| · | and
|
| · | or
|
| · | not
|
| · | =, <, >, <=, >=, <> "not equal to"
|
| · | +, -
|
| · | / "division"
|
| · | * "multiplication"
|
| · | ^ "raise to the power of"
|
| · | mod "modulo"
|
| · | Q1 = 23 "Qualify for this cell if Q1 is equal to 23"
|
| · | Q1 >= 10 " Qualify for this cell if Q1 is less than or equal to 10"
|
| · | Q1 <> 99 " Qualify for this cell if Q1 is not equal to 99"
|
| · | Age > 18
|
| · | (Age > 18) and (Gender = 1)
|
| · | (Age > 18) or (Q1 = 23) or (Q2 > 3.534)
|
| · | ((ageQuestion > 18) Or (Not Shown(ageQuestion))) "Shown" is a function that returns true if the question specified in the parenthesis has been seen
|
| · | Q23/(Q24+Q25) >= 23.5
|
| · | (Q23*Q1)^0.5 < 10 "^" means "raised to the power of"
|
| · | Q1OpenEnd="hello world"
|