I am attempting to write a report that displays just exceptions for payroll time tracking records. I want to suppress all individuals and all the groups and associated detail records beneath them if they don’t qualify as an exception. An exception is anyone who does not have a total of 80 standard hours in a pay period. I have to group payroll records into two categories, 1) those hours that would be considered standard and 2) hours that either OT or adjustments. I am using a formula to categorize the records based on the primary key of the payroll record type (regular pay, training, vacation, sick, etc). The report looks something like this.
Group 1 – Person Name
Group 2- payroll category (All Standard)
3/1/09 8 hrs regular
3/2/09 8 hrs sick
3/3/09 8 hrs regular
3/4/09 8 hrs vacation
Group2 Total Hrs 32
Group 2-payroll category (Other)
3/1/09 1.5 hr Overtime
Group2 Total Hrs 1.5
I created a formula “Group2 Total” to summarize the hours for detail records in each payroll category, Sum(PayHours), and placed it in the group 2 footer. I can suppress the All Standard group, its detail records and the Group 1 name header by adding a formula to the section expert for group1, group2 and details under suppress to test if the Group2 Total = 80. That removes everything but the Other hours, they get orphaned in the report all by themselves.
I tried creating a second formula, TestGroup2Total, to test my summarized total for each group. If TestGroup2Total=80 then 1 else 0 I thought I would be able to add up the values for TestGroup2Total and any individual in the report who had a total greater than zero would not qualify as an exception. However, Crystal will not let me summarize this second formula. Last I tried incorporating the WhilePrintingRecords function into my second formula thinking that I needed to force this calculation to happen after the previous summary calculations. But I didn’t have any success with this. I would appreciate any suggestions.
Group 1 – Person Name
Group 2- payroll category (All Standard)
3/1/09 8 hrs regular
3/2/09 8 hrs sick
3/3/09 8 hrs regular
3/4/09 8 hrs vacation
Group2 Total Hrs 32
Group 2-payroll category (Other)
3/1/09 1.5 hr Overtime
Group2 Total Hrs 1.5
I created a formula “Group2 Total” to summarize the hours for detail records in each payroll category, Sum(PayHours), and placed it in the group 2 footer. I can suppress the All Standard group, its detail records and the Group 1 name header by adding a formula to the section expert for group1, group2 and details under suppress to test if the Group2 Total = 80. That removes everything but the Other hours, they get orphaned in the report all by themselves.
I tried creating a second formula, TestGroup2Total, to test my summarized total for each group. If TestGroup2Total=80 then 1 else 0 I thought I would be able to add up the values for TestGroup2Total and any individual in the report who had a total greater than zero would not qualify as an exception. However, Crystal will not let me summarize this second formula. Last I tried incorporating the WhilePrintingRecords function into my second formula thinking that I needed to force this calculation to happen after the previous summary calculations. But I didn’t have any success with this. I would appreciate any suggestions.