A numeric comparison operator can be used in any expected value cell that contains a number. The operators are < (less than), > (greater than), <= (less than or equal) and >= (greater than or equal).
eg.ArithmeticColumn |
x | y | plus? |
2 | 2 | 4 <5 |
InfoFixture |
set | result | 4 |
check | result | 4 <5 |
These operators can be combined with the
Symbol Values symbol recall operator. You may need to use a space to seperate 'less than' and 'symbol recall'.
eg.ArithmeticColumn |
x | y | plus? |
2 | 1 | >>three 3 |
2 | 3 | >>five 5 |
2 | 2 | 4 ><<three 3 |
2 | 2 | 4 < <<five 5 |