Eval: in evaluator columns

I can't seem to use eval: in evaluator column code.

I was hoping to speed up my evaluator columns by making a cached evaluator column temp that does some time consuming stuff, and then use eval:temp to do some more parsing in other evaluator columns.

Test = left(eval:temp, 4);

Is this not possible (yet), or am I not doing this right?

Bump.

Use the Val() function to access the value of columns with colons in the name (otherwise the parser gets confused).

1 Like

Yes, that works, thanks!