How to handle quotation marks in column name when trying to use in dynamic formula
Assume I have a table with headers Greek and AlsoGreek as follows:Greek AlsoGreekAlpha PhiBeta OmegaGamma ZetaThe following script will give me a column called "concat" which will combine the 2 columns (I added tabs between the concat symbols to make it more readable).dt = Current Data Table();colnames = dt<<get column names;colstring=":Name(\!"" || char(colnames[1]) ...