Rounding Two place holders.

Listerman

Registered User.
Local time
Today, 11:12
Joined
Mar 3, 2008
Messages
19
My sql code reads as follows:

Total ATR: Round([Total Resolved] / ([Total Resolved] + [Total Escalated]) * 100) & "%"

This will round to a whole.

When I try to set it to round to the tenth it fails.
I tried using
Total ATR: Round((([Total Resolved] / ([Total Resolved] + [Total Escalated]) * 100) & "%"),2)

Any ideas?
 
Total ATR: Round((([Total Resolved] / ([Total Resolved] + [Total Escalated]) * 100) ),2)& "%"

???
 
Wow, you're right. Can't believe I was missing that. I was trying to round the whole code.
Thanks!
 
If you would have gotten it to work it'd been pretty cool - :):)
 

Users who are viewing this thread

Back
Top Bottom