When the Transform Column is created by telling the data table to do so
col1 = dt << Transform Column ("col1Name", Formula(1/:height));
one can take the return value and sore it as a JSL symbol.
Then it's no problem to re-evaluate the formula:
col1<<Eval Formula()
The actual problem:
If a report (e.g. graph builder) creates a transform column
gb = dt << graph builder();
gb << Transform Column ("col2Name", Formula(1/:height));
there is no return value: how to reference a Transform Column?
So, the question is reduced to:
How to update a a Transform Column which was created by a Report.