Is it possible to link a cell to a combobox that is located on a worksheet (not userform) and retrieve the value form the combobox and place it in a cell??
---------- Post added at 12:39 PM ---------- Previous post was at 12:36 PM ----------
Never mind, fixed it myself...
---------- Post added at 12:39 PM ---------- Previous post was at 12:36 PM ----------
Never mind, fixed it myself...
Code:
Private Sub cmdchoosepurchaser_Change()
Range("L58") = cmdchoosepurchaser.Value
End Sub