I've got a form in Excel that contains 20+ comboboxes.
Unfortunately I can't use control arrays, but rather than setting the rowsource for each combobox in turn I am trying to do the following :
VB Code:
Dim cbo As ComboBox For Each cbo In [B]forms[/B] cbo.RowSource = "'Data Source'!P3:P4" Next
For some reason this doesn't work ?!?!
The "forms" object seems empty ?!!
Do I have to address it as something else in VBA ?




Reply With Quote