Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Maybe something like this :
=num( (sum(CallIn)+sum(Callout)+count(Mails)+count(Id))/HourDivider , '#.##0.00' )
Maybe something like this :
=num( (sum(CallIn)+sum(Callout)+count(Mails)+count(Id))/HourDivider , '#.##0.00' )
Use below (Same as Bill Replied)
=Num(YourExpression,'#,#0.00')
Excellent! Thanks! All I was missing was the second bracket after NUM!
As I have said before: Slippery blighters them brackets.