SELECT
EventDateTime,
Description,
EventDuration,
Format([EventDateTime],"dd/mmm/yyyy") AS CheckInDate,
Format([EventDateTime],"hh:nn") AS CheckInTime,
Format(DateAdd("n",[EventDuration],[EventDateTime]),"dd/mmm/yyyy") AS CheckOutDate,
Format(DateAdd("n",[EventDuration],[EventDateTime]),"hh:nn") AS CheckOutTime
FROM tblReservations
|