P
PETER
I have a database that records room bookings in half hour slots. A 1 hour
booking uses 2 records -one for each half hour. The allocation report would
also show 2 records. I have tried the following query to see if I can
display a single line showing for each room the initial start time and the
final end time as one record. I am having problems with the filter. Can
anyone tell me where I have gone wrong? Thanks in advance. Peter.
PS Sorry if this appears twice - I had a problem sending it the first time
and am not sure if message went!
SELECT Min([Schedule Details].ScheduleStartTime), Max([Schedule
Details].ScheduleEndTime)
FROM [Schedule Details]
WHERE ScheduleID =
(SELECT (distinct(ScheduleID) FROM Schedule Details);
booking uses 2 records -one for each half hour. The allocation report would
also show 2 records. I have tried the following query to see if I can
display a single line showing for each room the initial start time and the
final end time as one record. I am having problems with the filter. Can
anyone tell me where I have gone wrong? Thanks in advance. Peter.
PS Sorry if this appears twice - I had a problem sending it the first time
and am not sure if message went!
SELECT Min([Schedule Details].ScheduleStartTime), Max([Schedule
Details].ScheduleEndTime)
FROM [Schedule Details]
WHERE ScheduleID =
(SELECT (distinct(ScheduleID) FROM Schedule Details);