In Ignition 7.9, when can use offset for computing address,
We encounter many case where the offset is not +X but something like
DataPoint{BaseAddress + ( {ParamNum} * X)}
Ignition 7.9 doc :
OPC Item Path: DataPoint{BaseAddress}
Offset
Imagine that our data type had three fields, and these were laid out sequentially in the device.
Instead of specifying each address for each Tag, we can simply offset from the base address:
Member 1: DataPoint{BaseAddress+0}
Member 2: DataPoint{BaseAddress+1}
Member 3: DataPoint{BaseAddress+2}