Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need help in number format

Hi All,

      I have strucked in converting the number format, My chart expression is giving the values like 2359526 and my expression for this value is if(Flag='US',Sum(Uvol), Sum(Ivol))  but I need to convert this number to  2,359K (need to add k end of the number). Please suggest me a idea for this.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Divide amount by 1000 and change the number format like:

Num( if(Flag='US',Sum(Uvol), Sum(Ivol)) /1000 , '#,##0K' )

View solution in original post

7 Replies
alexandros17
Partner - Champion III
Partner - Champion III

just write

if(Flag='US',Sum(Uvol), Sum(Ivol)) & 'K'

rustyfishbones
Master II
Master II

NUM( if(Flag='US',Sum(Uvol), Sum(Ivol)),'#,##0K')

its_anandrjs

You can write this way

=Num( if(Flag='US',Sum(Uvol), Sum(Ivol))

,'#,##0K' )

tresesco
MVP
MVP

Divide amount by 1000 and change the number format like:

Num( if(Flag='US',Sum(Uvol), Sum(Ivol)) /1000 , '#,##0K' )

MK_QSL
MVP
MVP

=NUM(YourExpression/1000,'#,##0K')

nizamsha
Specialist II
Specialist II

if(Flag='US',num(Sum(Uvol)/1000,'#,##0K'), num( Sum(Ivol)/1000,'#,##0K'))

Not applicable
Author

Thanks for your quick help.