Hello,
I am wondering if it possible to use my for loop variable, i, as an input for a new column, depending on the value of another column. Here is what I am thinking, but cannot get to work.
dt << New Column("Site", Numeric, Formula(
For(i = 1, i <= 8, i++,
If(Contains(:Column1, i), i);
)
));