Quantcast
Viewing all articles
Browse latest Browse all 149

Add trailing zeros

Case
I have a currency €25,10 but when I put it in a Flat File destination it removes all trailing zero's after the decimal symbol: 25,10 becomes 25,1 and 24,00 becomes 24. How can I prevent that?

Solution
The solution is easy. Just cast it to a numeric with the scale set to 2. Other datatypes remove the trailing zeros, but numeric seems to do the trick: (DT_NUMERIC,5,2)myNumber
Image may be NSFW.
Clik here to view.
CAST to get trailing zeros

























For adding leading zero check this post.

Viewing all articles
Browse latest Browse all 149

Trending Articles