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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
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...!