-
I'd like to use |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
As an experiment, I drafted some expression code for .visidatarc that lets you refer to a column called I think it's only suitable for advanced users to experiment with, however. One thing to remember if you try it: any future changes to
|
Beta Was this translation helpful? Give feedback.
As an experiment, I drafted some expression code for .visidatarc that lets you refer to a column called
v.a0
by usingv_a0
. It translates any column name characters in'.,<>()[]+-/% '
to underscores (including spaces). So in an expression, you can refer to a columna[0]
usinga_0_
or a columnw - margin
asw___margin
.I think it's only suitable for advanced users to experiment with, however. One thing to remember if you try it: any future changes to
evalExpr()
insheets.py
would need to be worked back into this code in your .visidatarc.