G
Guest
Hello,
I want to make a report that summarizes how many hotel rooms are reserved
per night. I need to modify the following code:
Date = CheckInDate
Do Until Date = CheckOutDate
Select case Date
Case Date1
TotalRooms1 = TotalRooms1 + 1
Case Date2
TotalRooms2 = TotalRooms2 + 1
-
-
End Select
Date = Date + 1
Loop
Thank you
I want to make a report that summarizes how many hotel rooms are reserved
per night. I need to modify the following code:
Date = CheckInDate
Do Until Date = CheckOutDate
Select case Date
Case Date1
TotalRooms1 = TotalRooms1 + 1
Case Date2
TotalRooms2 = TotalRooms2 + 1
-
-
End Select
Date = Date + 1
Loop
Thank you