Hi all,
I am trying to create a new column with formula, which represented by 2 variables as below:
dt << New Column("myNewColumn", Numeric, Continuous, Formula(:Ceiling( XXColumn / Size) * Size));
where:
XXColumn is one of column name in dt, selected in column dialog
Size = numeric value from column dialog
My attempt resulted a new column with formula with no value as formula create as below:
Ceiling(Column(XXColumn ) / Size) * Size
without actually assign it.
Any idea how I can accomplish this?