Hi Peter,
Make a single simple form, unbound- not attached to any table, set its pop up property to Yes, sizeable borders with a controlbox and min/max buttons to min only. With the wizard on (wand & stars depressed) place a combo box on your form and choose "I want the combo to look up data from a table". Next, select the table that your query is based off of. Name your new combobox "CboSelect".
Take a moment and look at its "limit to list" property. To get there, double-click on the combobox and a properties dialog box will pop up. Select the Data tab. This must be set to Yes. You should also set a default value to one of the "organization names".
You could do exactly the same for your start dates and end dates however base them off of a query that shows only the unique dates (query design, doubleclick on the query screen to show the queries properties and set Unique Values to yes)
Name the combos CboStart and CboEnd . A default value for both would be wise.
Again using the wizard on your form create a command button: (under miscellaneous-Run query, and choose your query name.
Close and save your form.
In your query in your criteria row under "organization name", type:
=Forms![EnterTheNameOfTheFormYouJustMade]![CboSelect]
In your query in your criteria row under "TheNameOfYourDateField", type:
Between Forms![EnterTheNameOfTheFormYouJustMade]![CboStart] And Forms![EnterTheNameOfTheFormYouJustMade]![CboEnd]
Close and save your query.
Open your form and select your choices. Click your command button and your query should run! Gord
ghubbell@total.net