Skip to main content
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

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

Try like this

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