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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Number format issue in text box

Hi all

I'm having an issue getting the number format right in a text box.

The expression is:

=num(sum(CallIn)+sum(Callout)+count(Mails)+count(Id))/HourDivider

It gives me the answer I require but where do I place the NUM to format the answer to two decimal places?

Many thanks in advance

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Maybe something like this :

     =num( (sum(CallIn)+sum(Callout)+count(Mails)+count(Id))/HourDivider , '#.##0.00' )

    

View solution in original post

4 Replies
Anonymous
Not applicable
Author

Maybe something like this :

     =num( (sum(CallIn)+sum(Callout)+count(Mails)+count(Id))/HourDivider , '#.##0.00' )

    

MK_QSL
MVP
MVP

Use below (Same as Bill Replied)

=Num(YourExpression,'#,#0.00')

Anonymous
Not applicable
Author

Excellent! Thanks! All I was missing was the second bracket after NUM!

Anonymous
Not applicable
Author

As I have said before:  Slippery blighters them brackets.