Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How to convert amount into million ,billions in straight table. In number tab Symbol option is not enabled after selecting the inter option also.
Please Help me.
Thanks in advance.
Hi,
In Straight table this options will be disabled, since straight table do not have X and Y axis. If you want this you have to do this manually like below
=If(Sum(Measure) > 1000000000, Num(Sum(Measure)/1000000000, '##0.00B'),
If(Sum(Measure) > 1000000, Num(Sum(Measure)/1000000, '##0.00M'),
Num(Sum(Measure)/1000, '##0.00K')))
Hope this helps you.
Regards,
Jagan.
Write it into a Num() expression, like:
If(Sum(Sales)>1000000000, Num(Sum(Sales)/1000000000, '##0.00B'), Num(Sum(Sales)/1000000, '##0.00M'))
Which would give you your data in billions or millions.
Do this,
Properties ->Number->
Select the relevant expression-> (you want the result)
Select Integer(mark)
Then,
Apply-> Ok
Priyantha.
Hi,
In Straight table this options will be disabled, since straight table do not have X and Y axis. If you want this you have to do this manually like below
=If(Sum(Measure) > 1000000000, Num(Sum(Measure)/1000000000, '##0.00B'),
If(Sum(Measure) > 1000000, Num(Sum(Measure)/1000000, '##0.00M'),
Num(Sum(Measure)/1000, '##0.00K')))
Hope this helps you.
Regards,
Jagan.
Thankyou Jagan Mohan and aaron Morgan
Hi Anusha,
If you got the Answer close this thread by giving Correct Answer to the useful post.
Regards,
Jagan.
what if i have multiple measures like combination chart
Add some additional conditions to the If().
Regards,
Jagan.