Hi.
Using CR 9.0 with Microsoft sql server
In my detail section I output shift start and end times like this: (The detail section will be supressed)
Time({VP_SCHEDULE.SHIFTSTARTDATE})
Time({VP_SCHEDULE.SHIFTENDDATE})
In my example, this gives me five records
What I need to do is to determine the minimum start-time, and the maximum end-time and output this in my group footer.
(I'm grouping on Date)
I've come a long way if I'm able to do this, but in addittion I would like to build some sort of timeframe out of these two values.
Say that minimum start-time is 08:00 and maximum end-time is 22:00, I would like to build a string for output in the footer which goes like:
Any ideas of how to go forward with this? I think I have to solve it this way, because I can't get my Gantt-chart to display proper data in the X-axis.
Thanks.
Regards, Bjorn
Using CR 9.0 with Microsoft sql server
In my detail section I output shift start and end times like this: (The detail section will be supressed)
Time({VP_SCHEDULE.SHIFTSTARTDATE})
Time({VP_SCHEDULE.SHIFTENDDATE})
In my example, this gives me five records
Code:
Start-time...End-time
08:00........16:00
09:00........17:00
14:00........20:00
16:00........22:00
13:00........19:00
What I need to do is to determine the minimum start-time, and the maximum end-time and output this in my group footer.
(I'm grouping on Date)
I've come a long way if I'm able to do this, but in addittion I would like to build some sort of timeframe out of these two values.
Say that minimum start-time is 08:00 and maximum end-time is 22:00, I would like to build a string for output in the footer which goes like:
Code:
08..09..10..11..12..13..14..15..16..17..18..19..20..21..22
Any ideas of how to go forward with this? I think I have to solve it this way, because I can't get my Gantt-chart to display proper data in the X-axis.
Thanks.
Regards, Bjorn