Hi,
The following code activates the userform from columns 1 to column 14 and headings from row 1.
How could I make the code to load data from row 16 of sheet "MySheet" from columns D to N?
Any help wpuld be kindly appreciated.
The following code activates the userform from columns 1 to column 14 and headings from row 1.
Code:
Private Sub UserForm_Activate()
With ComboBox1
For i = 1 To 14
.AddItem Cells(1, i)
Next i
.SetFocus
End With
End Sub
Any help wpuld be kindly appreciated.