The NUM > NUM operator returns a value of true if the first number value is greater than the second number value.
You can use the > operator to form conditions for IF statements. This can be useful in determining template logic.
Operator | Model | After you drag and drop the model into the script tab: | Expression returns: |
NUM > NUM | ⟦NUM⟧ > ⟦NUM⟧ | Replace both ⟦NUM⟧ placeholders with a numeric value you want to compare the other to. | A true/false value. |
The following script does something if the number variable numvarNU is greater than 1.
IF numvarNU > 1
//do something
END IF
After you download the example template, you can import the template to any workspace to see this example code in action.