Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

% issue

Status
Not open for further replies.

pungigi

Programmer
Oct 29, 2003
115
US
This is probably something very simple but my brain is on overload right now.

I have a formula that divides

Sum Count of trips (plan)/Sum Count of trips (call center)

I want it to return a %, it does but it doesn't look right, for example...

101827/102942 returns 1.00% but is really 98.91%

Can anyone help with this.
 
Crystal % formatting doesn't take care of multiplying the number by 100. You need to do this yourself.

Cheers,
- Ido

CUT, Visual CUT, and DataLink Viewer:
view, e-mail, export, burst, distribute, and schedule Crystal Reports.
 
Change your formula to this:
Code:
(Sum Count of trips (plan)/Sum Count of trips (call center))*100


~Brian
 
Or just do:

Sum Count of trips (plan) % Sum Count of trips (call center)

-LB

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top