My End User wants a report that will show him the Work Centers that are late. No problem. I created a query to extract the information and indicate whether the Work Center was late or not.
My Data is as follows:
My Problem is that the User wants to see the data lined up as:
-----------------
-----------------
I grouped on the Job field.
Then I copied each of the Start Date Fields and applied Suppress Formatting with the Following Formula:
Which Works EXCEPT that on each change of the Work Center the detail line staggers down the report.
Any suggestions? Of course, the report is now late because I am spinning my wheels on getting this figured out.
Thanks.
Dawn
My Data is as follows:
Code:
Job # Work_Center Act. Start Sched Start
10302 PURCHAS 6/3/01 2/1/01
10974-13 CUTTING 5/16/01 5/4/01
10974-13 FACTORY 6/8/01 5/17/01
10974-14 CUTTING 5/29/01 5/18/01
10974-14 FACTORY 6/9/41 6/1/01
My Problem is that the User wants to see the data lined up as:
-----------------
Code:
Job Purch Cutting Factory
Act. Start Act. Start Act. Start
Sched Start Sched Start Sched Start
10302 6/3/01
10974-13 5/16/01 6/8/01
5/4/01 5/18/01
I grouped on the Job field.
Then I copied each of the Start Date Fields and applied Suppress Formatting with the Following Formula:
Code:
if {Work_Center}<>"CUTTING" then
True //Suppress the Date
Else
False //Do Not Suppress the Date
Which Works EXCEPT that on each change of the Work Center the detail line staggers down the report.
Any suggestions? Of course, the report is now late because I am spinning my wheels on getting this figured out.
Thanks.
Dawn