combo sort

tubar

Registered User.
Local time
Today, 15:19
Joined
Jul 13, 2006
Messages
190
I have these 100 location names which are categorized by 10 types. I would like to create a combo box listing the types…after the user selects the type… this form or another one has a list box filtered of locations only pertaining to that type…that value needs to be used to input data like an issue

Example TYPE=meeting room Location=101 user fills out information 1 burnout light in meeting room 101
 
Are these in two different tables?

Like so:

tblLocations
pkLocationID
Location
fkTypeID

tblTypes
pkTypeID
Type

Then in your relationships relate the pkTypeID in tblTypes to fkTypeID in tbllocations

If this isn't your current setup, I suggest changing it, so that what you want to achieve is a lot easier, actually, if you want to do it the way you currently have visit this thread for info.
 
Arghh. I am thinking too slow this morning! Thanks missinglinq.
 
i have a location table and a location type table i also have an issues table. so when the user selects location type (meeting room) the next form should filter all locations to display just meeting rooms. when the user selects meeting room 101 then a new record in the issues table should be added for issue meeting room 101
 

Users who are viewing this thread

Back
Top Bottom