Multiplication ( * ), division ( / ), addition ( + ),subtraction ( - )
- Last UpdatedJul 22, 2024
- 1 minute read
These binary operators perform basic mathematical operations. The plus (+) can also concatenate String datatypes.
For example, in the data change script below, each time the value of "Number" changes, "Setpoint" changes as well:
Number=1;
Setpoint.Name = "Setpoint" + Text(Number, "#" );
Where: The result is "Setpoint1."