Hi All and thanks in advance for your help and wisdom
I am currently using the following code to change a label on a userform
Private Sub Combobox2_Change()
Dim rw As Long
rw = Me.ComboBox2.ListIndex + 1
Me.Label23.Caption = Sheets("Data").Range("D" & rw).Value
End Sub
It...