Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
muralam
Creator
Creator

put decimal point after two digits

Hi Team,
I have a requirement like below,
Input data:
10835.14
1234.9
1075
Expected output:
10835.140000
1234.900000
1075.000000
How can I handle this in talend, kindly help on this thank you

Regards,
Meena

Labels (2)
1 Solution

Accepted Solutions
TRF
Champion II
Champion II

The java.text.DecimalFormat class is what you need to control the display format for decimal values https://docs.oracle.com/javase/tutorial/java/data/numberformat.html

View solution in original post

1 Reply
TRF
Champion II
Champion II

The java.text.DecimalFormat class is what you need to control the display format for decimal values https://docs.oracle.com/javase/tutorial/java/data/numberformat.html