Using selection from combobox on userform

J

JVLin

Hi,

I have a combobox on a userform and want to output the selection to a
worksheet cell.

How do I do this?

Regards,

JVLin
 
J

JVLin

Figured it out:

used the Combo's .value property and set a range equal to that.

range("A1") = me.combobox.value
 
Top