View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
merjet merjet is offline
external usenet poster
 
Posts: 812
Default Populate ComboBox list with Access data

Here is the SQL for ComboBox1:

SQL = "SELECT * FROM Table1 WHERE " _
& "Table1.prType =" & Chr(34) & "hot" _
& Chr(34) & " AND Table1.prUse =" _
& Chr(34) & "base" & Chr(34) & ";"

Change the table name to suit and "base" for ComboBox2 and ComboBox3.

Hth,
Merjet