Hi, i have a dt with some columns that are in string.
e.g.
1210.1
12
1032.12
Is there any way to convert the whole column value to 2 decimal places, which doesnt use the for each row method?
Hi, i have a dt with some columns that are in string.
e.g.
1210.1
12
1032.12
Is there any way to convert the whole column value to 2 decimal places, which doesnt use the for each row method?
You can use compute to do this using assign activity
dt = dt.Compute("Round([ColumnName], 2)", "")
cheers