SSIS rounding number to 2

Viewed 986

I have a column of type DT_NUMERIC(16,4). How can I round to number to 2 digits is SSIs in derived column? I tried sound(column,2) and it doesnt work for me.

I have also tried (DT_NUMERIC,16,4)ROUND([Column],2) , it doesnt work either

Currently I have = 21.7000 I want = 21.70

1 Answers
Related