Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
How to show values in Million(m) foramt and thousand(k) foramts in line chart
please find the attached doc
Thanks
Something like this:
if(sum(Amount)>=1000000
,num(sum(Amount)/1000000,'#,##0.0 M')
,num(sum(Amount)/1000,'#,##0 K'))
Replace sum(Amount) with the expression you use now.
Hi,
First thing I will do is, go to chart properties ->Number tab -> bottom right Thousand Symbol enter TH (or whatever you prefer) -> Million Symbol enter M (or whatever symbol you prefer). Then go to Expression tab then check Values on Data Points. Click OK.
Hope that helps
Regards,
Gabriel
PFA file, hope it helps you.
Regards,
Jagan.
Hi jagan,
Iam unable to open qvd file
could you post those steps
thanks
Something like this:
if(sum(Amount)>=1000000
,num(sum(Amount)/1000000,'#,##0.0 M')
,num(sum(Amount)/1000,'#,##0 K'))
Replace sum(Amount) with the expression you use now.
Hi,
Please find attached file.
Regards,
Jagan.
Excellent Wassennar,
Thanks
Hi Wassennar,
I applied your formula ,but the trend line shows above
Millions shows down trend and Thousand shows up trend
Thanks