I just learned something!
OK, here goes Create your two combo Boxes
In the properties window try this:
Row/Source Type = Table/Query
Row Source for Combo1:
SELECT DISTINCT Location.Main FROM Location ORDER BY [Main];
Row Source for Combo2:
SELECT DISTINCT Location.Sub, FROM Location WHERE (((Location.Main)=[Forms]![Form1]![Combo1]));
Location = Change to Table Name where the info resides.
Main - Change to Field Name for Main
Sub - Change to Field Name for Sub
Form1 - Change to Name of Current Form
Combo1 - Change to Name of first combo box
Hope it works, give it a go!
Tammie
"HotRod" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
>I have two combo boxes on a form that are both linked to the same table
> "location" that contains on column 1 all of the main locations and in column
> 2 all of the sub locations for each main location. I want the user to select
> the Main Location from combo 1 and then only be shown the sub locations in
> combo 2 that match the Main Location in combo 1.
>
>
|