Thread: macro & comobox
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default macro & comobox

Private Sub Combobox1_Click()
ActiveCell.Value = Combobox1.Value
End Sub

--
Regards,
Tom Ogilvy

"pandino" wrote in message
...
I have a combobox with 10 items in the first line of an
excel sheet column. I'd like to create a macro to fill
active cell with a value from this combobox. How should I
do?
Thanks for support!