Somebody must have tackled this before?
I have CRXI and MSSQL 2000
I've got table of appointments that includes the SchedStartTime (DateTime).
I'm trying to create a report that shows the entire daily calendar. My first report showed the appointments one right after another, which makes sense because that's the only data in the table.
However, we have appointment SLOTS available every 45 minutes, so I'd like to display the TIME (and no patient info) for the slots where there are no appts.
My first pass at it (ugly) was to build a several formulas (SchedStartTime+45), (SchedStartTime+90), etc
Then, create additional Data sections that were supressed if the difference between the SchedStartTime and the next(SchedStartTime) was > 45, 90, etc.
It works, but seems ugly and very manual. It ALSO fails if after the last appt. I could fix that, but it's just getting uglier.
Any suggestions?
One caveat--I don't always know the time of the 1st appt (different on weekends than weekdays). Everything is on 15min increments, and the 45 minute SLOTS follow after that.
I have CRXI and MSSQL 2000
I've got table of appointments that includes the SchedStartTime (DateTime).
I'm trying to create a report that shows the entire daily calendar. My first report showed the appointments one right after another, which makes sense because that's the only data in the table.
However, we have appointment SLOTS available every 45 minutes, so I'd like to display the TIME (and no patient info) for the slots where there are no appts.
My first pass at it (ugly) was to build a several formulas (SchedStartTime+45), (SchedStartTime+90), etc
Then, create additional Data sections that were supressed if the difference between the SchedStartTime and the next(SchedStartTime) was > 45, 90, etc.
It works, but seems ugly and very manual. It ALSO fails if after the last appt. I could fix that, but it's just getting uglier.
Any suggestions?
One caveat--I don't always know the time of the 1st appt (different on weekends than weekdays). Everything is on 15min increments, and the 45 minute SLOTS follow after that.