I have a report that shows performance metrics for each employee by project. There are basically 2 key fields used: ProjectID, PCID (employee id). Here is how it looks currently:
_________________________________________________
Project Data: BOK-MOK Delivery CN Consulting
Invoice Amnt: $5000.00 $10000.00
Adkins, B $1250.00
Jones, M $1250.00 $10000.00
King, H $2500.00
_________________________________________________
I have the report grouped on ProjectID, then PCID. I have the report using 8 columns per page. Typically there are 20-30 projects on a report with 10-15 employees. The customer would like as many projecs to show up on a page at once. I am using code in the On Format sections of the header and details to only show the labels once, for example:
If Me.Left < Me.Width Then
Me.LabEmployee.Visible = True
Else
Me.LabEmployee.Visible = False
Ok, enough background, time for the question. Is there a way I can add a column that shows up after the last project column that would have all the totals horizontally? Like this:
_________________________________________________
Project Data: BOK-MOK Delivery CN Consulting Totals
Invoice Amnt: $5000.00 $10000.00 15000.00
Adkins, B $1250.00 1250.00
Jones, M $1250.00 $10000.00 12500.00
King, H $2500.00 1250.00
_________________________________________________
Thank you in advance!
_________________________________________________
Project Data: BOK-MOK Delivery CN Consulting
Invoice Amnt: $5000.00 $10000.00
Adkins, B $1250.00
Jones, M $1250.00 $10000.00
King, H $2500.00
_________________________________________________
I have the report grouped on ProjectID, then PCID. I have the report using 8 columns per page. Typically there are 20-30 projects on a report with 10-15 employees. The customer would like as many projecs to show up on a page at once. I am using code in the On Format sections of the header and details to only show the labels once, for example:
If Me.Left < Me.Width Then
Me.LabEmployee.Visible = True
Else
Me.LabEmployee.Visible = False
Ok, enough background, time for the question. Is there a way I can add a column that shows up after the last project column that would have all the totals horizontally? Like this:
_________________________________________________
Project Data: BOK-MOK Delivery CN Consulting Totals
Invoice Amnt: $5000.00 $10000.00 15000.00
Adkins, B $1250.00 1250.00
Jones, M $1250.00 $10000.00 12500.00
King, H $2500.00 1250.00
_________________________________________________
Thank you in advance!