Hi
I'm using Crystal 8.5 reporting from an SQL database.
I have a report with 3 groups: physician, registration date (weekly), and shift. There are 3 shifts: 0701 to 1500, 1501 to 2300, 2301 to 0700.
I am creating a report per physician (new page starts after each) and have a Total group (the metric for all physicians) area showing in the physician footer.
So for the Total average the formula would be:
whileprintingrecords;
shared numbervar d_avg;
d_avg:=weightedaverage({@LOS}/{Visits});
I'm able to create all metrics for totals but how would I do this if I want a departmental total per shift? Thanks.
I'm using Crystal 8.5 reporting from an SQL database.
I have a report with 3 groups: physician, registration date (weekly), and shift. There are 3 shifts: 0701 to 1500, 1501 to 2300, 2301 to 0700.
I am creating a report per physician (new page starts after each) and have a Total group (the metric for all physicians) area showing in the physician footer.
So for the Total average the formula would be:
whileprintingrecords;
shared numbervar d_avg;
d_avg:=weightedaverage({@LOS}/{Visits});
I'm able to create all metrics for totals but how would I do this if I want a departmental total per shift? Thanks.