Thanks Jebry...
As to your question, it would help to have a little more information. But, as a guess, first thing I would do is create your tables:
Code:
[b]tblLocations[/b]
LocID <-- Primary key (ex. 0001)
LocDescription <-- (ex. San Antonio Office)
Code:
[b]tblDetails[/b]
RecordID <-- Primary key
...
...
...
LocID <-- Foreign Key to tblLocations
Then, I would create a form that would have a drop down listbox that was loaded by a query from your tblLocations table:
Code:
SELECT LocID, Locdescription FROM tblLocations
This listbox would only display the Description field (size of the LocID field = 0), because most users don't know ID numbers.
Once they select a location, I would have a button that would call your form and pass the LocID selected as a parameter to a query that select records just for that location:
Code:
SELECT *
FROM tblDetails
WHERE LocID = [MySearchForm]![MyComboBox].Value
Something like that... I always end up playing around with it for a little bit to get it to work...
Hope that helps... Terry
**************************
* General Disclaimor - Please read *
**************************
Please make sure your post is in the CORRECT forum, has a descriptive title, gives as much detail to the problem as possible, and has examples of expected results. This will enable me and others to help you faster...