jollyreaper
Technical User
Crystal XI. I am printing a report for a construction schedule. The report is supposed to be laid out in rows by customer. It will look something like this:
Cust Stage1 Stage2 Stage3
Joe 5-5-05 5-6-05 5-7-05
Bob 5-1-05 5-2-05
The stages are specific tasks in the order of construction. These stages are used for estimating completion times on the projects. By stage 1, the house is 90 days out. By stage 2, 60 days out, stage 3, 30 days out, etc. The date is taken from the database entry for the task showing completion date.
I am reading all of these tasks off a big task table. The task table is laid out like this:
TaskID ClientID Stardate Enddate
1 1 5-5-05 5-6-05
2 1 5-6-05 5-7-05
3 1 5-8-05 5-20-05
So, here's my problem. If I wanted to display this stuff vertically, I know how to do that. Select on the task table by clientID, do an order by specified and only specify the ID's pertaining to the tasks I want. Then they would display grouped vertically. The only problem, of course, is that would create a lot of blank paper. I'd like to set this stuff up in neat columns like I outlined above.
What's the smartest solution for this? Thanks!
Cust Stage1 Stage2 Stage3
Joe 5-5-05 5-6-05 5-7-05
Bob 5-1-05 5-2-05
The stages are specific tasks in the order of construction. These stages are used for estimating completion times on the projects. By stage 1, the house is 90 days out. By stage 2, 60 days out, stage 3, 30 days out, etc. The date is taken from the database entry for the task showing completion date.
I am reading all of these tasks off a big task table. The task table is laid out like this:
TaskID ClientID Stardate Enddate
1 1 5-5-05 5-6-05
2 1 5-6-05 5-7-05
3 1 5-8-05 5-20-05
So, here's my problem. If I wanted to display this stuff vertically, I know how to do that. Select on the task table by clientID, do an order by specified and only specify the ID's pertaining to the tasks I want. Then they would display grouped vertically. The only problem, of course, is that would create a lot of blank paper. I'd like to set this stuff up in neat columns like I outlined above.
What's the smartest solution for this? Thanks!