Accessing controls in excel using vbscript

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

Guest

I have an excel sheet which populates values based on a value selected in a
combobox. I am using a vbscript code to access this excel and generate an
html page.

My requirement is to generate seperate html page based on each value in the
excel combobox.

Using vbscript i need to write
I need to identify the combo list items.
I need to repopluate the excel for each combo values before generating the
html

How can i do this.
Thanks in advance.
 
With ActiveSheet.Combobox1
for i = 0 to .listcount - 1
v = .list(i)
' populate
next
End With
 

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