You want to restrict the dropdown list in the second combo
box based upon the selection made in the first combo box.
The combobox property that determines what is shown in the
dropdown list is called RowSource, which needs to be
populated with an SQL statement telling Access what to show
in the dropdown list and where to get it from. Normally
the SQL statement is unqualified, i.e. it will show all
items from the database. In this requirement, the SQL
statement needs to be qualified with a WHERE condition to
take into account the selection from the first combo box.
Where the SQL is generated depends upon whether the form is
for entering new data, amending existing data or searching.
In most cases, it can be put in the AfterUpdate event
handler of the first combo Box; other times, it is best to
put in the GotFocus event handler of the second combo box.
In the simple case where the first combo shows the key
column that links the two combo boxes, the code takes the
form of combo2.RowSource = "SELECT columnNames FROM
tableName WHERE foreignKeyColumnName = " & combo1.value.
Hope This Helps
Gerald Stanley MCSD