I would like to create a drop down list in a form. When month is selected I would like information for that month only to show in form. Would I have to connect to a different table for each month? How would this drop down list be created in form? Usually I have transferred information to an excel spreadsheet then delete entries and start over in next month. But I would like all months entries to be in the database without transferring to excel. Thanks!
Drop down list in Form in Access
Collapse
X
-
-
You create a table containing all the items that are to appear in your drop down list. Then you add a combo box to your form, and in Row Source property of the combo box, type the following:
SELECT DISTINCTROW [tblName].[fieldName] FROM [tblName];
If you want more than one field to appear, then separate them by a comma.
Hope this helps.
comteck
Comment