How can I place data derived from a CHOP into a Table DAT?
In the example below, I want it so that the central value in the table (‘9’) is replaced by the data in the CHOP to DAT.
TIA
CHOP_data_into_table.tox (678 Bytes)
How can I place data derived from a CHOP into a Table DAT?
In the example below, I want it so that the central value in the table (‘9’) is replaced by the data in the CHOP to DAT.
TIA
CHOP_data_into_table.tox (678 Bytes)
the way I use (but not unique)
a chopexecute Dat with
op(‘table6’)[1,1] = val
CHOP_data_into_table.toe (3.6 KB)
That’s good Jacques. Another way is to put expressions in your DAT, like
op(‘null1’)[0]
in the center cell, and follow that with an Evaluate DAT. You can use the Scope page to reduce which cells to evaluate.
Or put the expression in the Expression parameter of the Evaluate DAT.
Thank you both! Very helpful