I am running Crystal 8.5 against SQL Server.
I have a simple report that returns the number of appointments and total appointment durations in four groups.
Discipline (of Clinician)
Age-Group (of Client)
Program (financial Class)
Site (Setting of Service Deliver)
I am using distinct counts to calculate the number of appointments, and running totals to calculate total appointment duration in each of the four groups. This works fine.
The problem I have is when I attempt to express total appointment duration under Site (RTOTAL1) as a percentage of total appointment duration under Discipline(RTOTAL4).
This should simply be ( RTOTAL1/RTOTAL4 ) * 100.
The results I am getting are incorrect.
I have a simple report that returns the number of appointments and total appointment durations in four groups.
Discipline (of Clinician)
Age-Group (of Client)
Program (financial Class)
Site (Setting of Service Deliver)
I am using distinct counts to calculate the number of appointments, and running totals to calculate total appointment duration in each of the four groups. This works fine.
The problem I have is when I attempt to express total appointment duration under Site (RTOTAL1) as a percentage of total appointment duration under Discipline(RTOTAL4).
This should simply be ( RTOTAL1/RTOTAL4 ) * 100.
The results I am getting are incorrect.