O
Owen
Hi
I would like to use the code below in a loop so that i can populate numerous
ComboBoxes within my UserForm with the same list.
I am not sure how to go about this, and would appreciate any help.
Thanks
With ComboBox7
Dim MonthArray As Variant
MonthArray = Split("01|02|03|04|05|06|07|08|09|10|11|12|", "|")
ComboBox7.List = MonthArray
End With
I would like to use the code below in a loop so that i can populate numerous
ComboBoxes within my UserForm with the same list.
I am not sure how to go about this, and would appreciate any help.
Thanks
With ComboBox7
Dim MonthArray As Variant
MonthArray = Split("01|02|03|04|05|06|07|08|09|10|11|12|", "|")
ComboBox7.List = MonthArray
End With