Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Problem with num function

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,

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

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

View solution in original post

6 Replies
Anonymous
Not applicable
Author

can you post  your sample data  !! i am using PE

Anonymous
Not applicable
Author

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

Anonymous
Not applicable
Author

what format should be shown?

if you use '0.000' instead of '#,###' I get a number. correct format?

PrashantSangle

Hi,

Try below changes in num()

try below,

num(yourexpression,'##,#00')

instead of ## in end try with 00

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Anonymous
Not applicable
Author

Hi balkumar,

  Thanks for your help its help full for me.

Thanks,

avinashelite

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,'###,###')