ComboBox Control on Worksheet

  • Thread starter Thread starter jasonluciano
  • Start date Start date
J

jasonluciano

Hi All,

I have added a combobox to a worksheet but it doesn't seem to show up
in the VBA editor in the auto help/fill. I can't even reference it by
typing the name any where in the code. Am I missing something? Thanks
for any help.
 
Hi All,

I have added a combobox to a worksheet but it doesn't seem to show up
in the VBA editor in the auto help/fill. I can't even reference it by
typing the name any where in the code. Am I missing something? Thanks
for any help.

Nevermind!!
 
Jason,

If you are referencing it from ThisWorkbook or a user module, you will need
to include the name of the Sheet Object. For example, if it is embedded in
Sheet1 then it would be Sheet1.ComboBox1 (or the specific name of your combo
box control).

You should see the name directly if you are referencing it from the Sheet
object that has the control.

hope that helps,
dan
 

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