Connecting items in a combo box to items in a table

J

Jon

Hi.

I have a combo box that I want to be able to select the
type of media that is going to be used to select a query.
One of the list items in the combo box is Removable
Media. In the table I do not have removable media listed
instead I have Zip, Floppy, and CD. Is there anyway that
I can tie these 3 items to removable media.

Thanks,
Jon
 
H

HSalim

Add a column to your table - media type and enter removable media there
alternatively, you can create a query - for example
Select MediaName, iif(Row_ID<=2, "FixedDrives","Removable Media")

HS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top