Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i developed dash board plese find following attachment.
In that when i select the 26th feb 2015 selections it gives exponential values but i have to display numeric values.
Please help me.
Thanks,
Add some more ### because which you have given are not enough to show all the numbers .
='Call Center' & chr(13) &
if(MTD='Day',num(sum({$<Date={'$(=max(Date))'},[Key Indicaters]={'Total Call Vol @ Call Center'}>} Key_Data),'#,##########')
,num(sum({$<Date={'$(=v_Previous_Date_2)'},[Key Indicaters]={'Total Call Vol @ Call Center'}>} Key_Data),'###,#########')
)
Use this
Thanks
BKC
can you post your sample data !! i am using PE
Add some more ### because which you have given are not enough to show all the numbers .
='Call Center' & chr(13) &
if(MTD='Day',num(sum({$<Date={'$(=max(Date))'},[Key Indicaters]={'Total Call Vol @ Call Center'}>} Key_Data),'#,##########')
,num(sum({$<Date={'$(=v_Previous_Date_2)'},[Key Indicaters]={'Total Call Vol @ Call Center'}>} Key_Data),'###,#########')
)
Use this
Thanks
BKC
what format should be shown?
if you use '0.000' instead of '#,###' I get a number. correct format?
Hi,
Try below changes in num()
try below,
num(yourexpression,'##,#00')
instead of ## in end try with 00
Regards
Hi balkumar,
Thanks for your help its help full for me.
Thanks,
hi
Mistake is with the num format you have given try like this:
if(MTD='Day',num(sum({$<Date={"$(=max(Date))"},[Key Indicaters]={'Total Call Vol @ Call Center'}>} Key_Data),'###,###')
,num(sum({$<Date={"$'(v_Previous_Date_2)'"},[Key Indicaters]={'Total Call Vol @ Call Center'}>} Key_Data),'###,###')
)
format: Num(expression,'###,###')