Newbies woodyhome Posted November 13, 2002 Newbies Posted November 13, 2002 I have a reservation system that has reservations for particular days out of the year. But i would like to have a print out of who is staying in what month. Each reservation has a particular start day and finish day, and i would like to have a combo box for the months of the year that once selected you will be able to click a button that runs a script that collects all the reservations for that particular month and put it into a table format for printing.
jasonwood Posted November 14, 2002 Posted November 14, 2002 For each month, you would have a script. I'll assume you want to see everyone who is staying in a particular month, even if they arrived before the month or are leaving after the month ends. Here's an example of one for January: Conduct a find that searches for StartDay > Jan1 or StartDay <= Jan31 or EndDay > Jan1 or EndDay <= Jan31 (since they are "or", these are all separate "Find Requests") You would then sort in order of Start Day, display a list, and print! BTW... nice name! Woody HeyWoody.com
Recommended Posts
This topic is 8116 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now