View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Henry[_4_] Henry[_4_] is offline
external usenet poster
 
Posts: 72
Default combination box to cell

Chris,

Private Sub ComboBox1_Change()
Sheets("Sheet1").Range("A1") = ComboBox1.Value
End Sub

HTH
Henry


"Chris A" wrote in message
s.com...
How do i get my choice from a combobox on a user form to a cell in the
worksheet additionally how to do this with a number of cells in one row

then
repeat for the row below.
do i need anyhitng in the cells to accept the .value = "whatever"
TIA