Connecting items in a combo box to items in a table

  • Thread starter Thread starter Jon
  • Start date Start date
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
 
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
 
Back
Top