Hey all,
1. I have a dynamic range in Sheet "Main Menu" that lists about 6 purchaser names.
2. My Combobox is located in Sheet "Create PO"
3. I applied the following code; however, nothing happens...
4. Any ideas, suggestions, or modifications??
1. I have a dynamic range in Sheet "Main Menu" that lists about 6 purchaser names.
2. My Combobox is located in Sheet "Create PO"
3. I applied the following code; however, nothing happens...
Code:
Sub choosepurchaser_Click()
Dim rng As Range
Set rng = Worksheets("Main Menu").Range("B40")
Worksheets("Main Menu").Devmod.ListFillRange = Range("B20", rng.End(xlDown)).Address(External:=True)
End Sub