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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Kohli
Creator II
Creator II

Change the number format?

there is a number value in a field called 'sales' as 555235. How to display the number in the format '555,235'?

4 Replies
amit_saini
Master III
Master III

num(Sales,'#,##0')

Thanks,

AS

Anil_Babu_Samineni
MVP
MVP

This will make more sense

=Num(555235,'#,##,##0')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
immkhan2
Contributor II
Contributor II

The above two serves the purpose but a little more elaborated for Num function

Num(number[, format[, dec_sep [, thou_sep]]])

avinashelite
MVP
MVP

Try like this

num(Sales,'###,##0')