When a number is selected in a combo box I need that to populate a cell on another worksheet. Currently I have:
Private Sub ComboBox1_Click()
ComboBox1.Value = Sheets(Sheet1!F2).Value
End Sub
but this is not working. Is there any other way to do this in VBA?
Private Sub ComboBox1_Click()
ComboBox1.Value = Sheets(Sheet1!F2).Value
End Sub
but this is not working. Is there any other way to do this in VBA?