I have a report that groups by dept #, job code and earnings code.
9999 Administration
033 Secretary
200 Regular Pay 44.00 1000.00
300 Sick Pay 8.00 25.00
400 Overtime 3.00 75.00
8888 Janoitorial
055 Janitor
200 Regular Pay 24.00 800.00
300 Sick Pay 4.00 15.00
400 Overtime 1.00 45.00
On the last page of my report I want to sum the earnings totals by earnings number. For Example:
Totals
200 Regular Pay 68.00 1800.00
300 Sick Pay 12.00 40.00
400 Overtime 4.00 120.00
Can this be done?
Create a new table at the bottom of the report, group by earnings code, and sum the numbers.|||Hi Jim,
another way to do this, is to use the table footer for the sums.
In the table footer, put the following expression
=Sum(IIF(Fields!earnings_code.value = 200, Fields!totals, cint(0))) this should be for regular pay and just replace the earning code for
the rest.
Then select the table, go to the properties, and there is an option called "Print footer rows on last page" and check that.
That should do it, hope that helps!
Bernard
|||Thanks for the help. I really appreciate it|||Can you mark the answers that were helpful?
Thanks.
No comments:
Post a Comment