hedgehog88
New Member
- Joined
- Mar 25, 2011
- Messages
- 6
Another question.
I have this Initialize sub for a userform which I would like to have it set for multiple worksheets (not workbook). And have the combobox populate from another worksheet range.
My code right now for one worksheet is:
Private Sub UserForm_Initialize()
Dim cLoc As Range
Dim ws As Worksheet
Set ws = Worksheets("LookupList")
Is there a way to add another worksheet, such as LookupList2?
Thanks in advance
I have this Initialize sub for a userform which I would like to have it set for multiple worksheets (not workbook). And have the combobox populate from another worksheet range.
My code right now for one worksheet is:
Private Sub UserForm_Initialize()
Dim cLoc As Range
Dim ws As Worksheet
Set ws = Worksheets("LookupList")
Is there a way to add another worksheet, such as LookupList2?
Thanks in advance