Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Number Symbol

Hi

I would like o include a symbol in a my straight table chart Sum(Value) to return symbol "K" for thousands, "M" for million next to the number in the table. How can I do this?

1 Solution

Accepted Solutions
Colin-Albert

You will need to manually test the value and divide the value by 1000000 or 1000 then add the 'K' or 'M' within your expression.

The option on expressions for Thousand, Million and Billion symbols only work on image charts like bar or pie charts, they do not work on straight or pivot tables

View solution in original post

4 Replies
Colin-Albert

You will need to manually test the value and divide the value by 1000000 or 1000 then add the 'K' or 'M' within your expression.

The option on expressions for Thousand, Million and Billion symbols only work on image charts like bar or pie charts, they do not work on straight or pivot tables

swuehl
MVP
MVP

Maybe like described here.

Number format in espression

robert_mika
Master III
Master III

Try like this:

if(sum([# Air Time])<1000000,dual(sum([# Air Time]/1000)&' K',sum([# Air Time])/1000),dual(sum([# Air Time])/1000000&' M',sum([# Air Time])/1000000))

You need dual to return number.

or fallow Stefan suggestion which is very neat.

Not applicable
Author

Divide it down then add in the Mn, Bn etc in the expressions.