I wonder if I could get help as I’m a beginner with VBA. I have a combobox with a list of dates and code to display the row number the combobox selection.
Private Sub ComboBox1_Click()
TextBox1.Value = ComboBox1.Column(0)
TextBox3.Value = Me.ComboBox1.ListIndex + 2
End Sub
I want to add data to the cell adjacent to the row number of the combobox selection, but cant find away to enter an “offset” to allow me to enter the data. Can anyone help me please?
Private Sub ComboBox1_Click()
TextBox1.Value = ComboBox1.Column(0)
TextBox3.Value = Me.ComboBox1.ListIndex + 2
End Sub
I want to add data to the cell adjacent to the row number of the combobox selection, but cant find away to enter an “offset” to allow me to enter the data. Can anyone help me please?