Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Mahamed_Qlik
Specialist
Specialist

Number format

Hi all,

How to convert the following amount into two decimal correct number format ?

suppose  I have number as 153,050.00 (something like 1,53,050.00)

Regards,

mahamed

21 Replies
MK_QSL
MVP
MVP

If(FieldName < 1000, Num(FieldName,'#,##0.00'),Num(FieldName,'#,##,##0.00')) as FieldName

Mahamed_Qlik
Specialist
Specialist
Author

Hey thanx buddy.

It works...!