Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello community,
i have this doubt in my app
i created a bar chart in which i used below expression as measure:
this expression checks the value and if its greater than 1cr is appends cr after the value else it appends lacs.
after using this i'm getting following output:
please help..
Hi,
maybe one solution could be:
using this expression:
If(Sum(Persons)>10000000,
Dual(Money(Sum(Persons)/10000000, '###.##Cr',',','.'),Sum(Persons)),
Dual(Money(Sum(Persons)/100000, '###.##Lacs',',','.'),Sum(Persons))
)
hope this helps
regards
Marco
Hi Pranav,
I have followed marcowedel post to achieve it.
kindly find the attached sample app.
I think you can change to Lac & Cr
sir can you send me the link of that exact discussion where i can find the solution of the matter..
thanks
use this expression and may be if required use measure expression in the number formatting instead of auto.
Hi,
Number formatting - millions to billions
check Marco Wedel @marcowedel Reply in that post.
Thanks,
Mukram
this way it shows value as 0.36 (i.e) in crores only and it doesnt even append cr at the end
hi Pranav
that's why asked you to use measure expression in the formatting.
see this its not happening
what about this
I have tried with dual and its working in my app.