View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Christian[_8_] Christian[_8_] is offline
external usenet poster
 
Posts: 17
Default combo box as cell reference? how?

Here are two ways


Private Sub ComboBox1_Change()

ActiveCell.Value = ComboBox1.Value 'one way

Cells(1, 2) = ComboBox1.Value 'another way
End Sub