Easy question (Combo Box)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm sure this is an easy coding question; I just don't know it. I know how to
add a simple column to a Combo Box. Say if I wanted to add columns E1
through J1 all the way down to E11 through J11. How do I input that?

Thanks,
Eric
 
For a combobox on a Userform:

Combobox1.rowSource = "Sheet1:E1:J11"
Combobox1.ColumnCount = 6
 

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

Back
Top