I've got a simple question that I can't seem to find the answer to.
How can I get data into the second column of the msflexgrid instead of it defaulting to the first column?
this is what I've got so far.
Private Sub UserForm_Initialize()
Dim cRow As Integer
cRow = 2
Do Until ActiveCell = Empty
Me.MSFlexGrid1.AddItem Worksheets("Setup").Cells(cRow, 1)
cRow = cRow + 1
Cells(cRow, 1).Select
Loop
End Sub
How can I get data into the second column of the msflexgrid instead of it defaulting to the first column?
this is what I've got so far.
Private Sub UserForm_Initialize()
Dim cRow As Integer
cRow = 2
Do Until ActiveCell = Empty
Me.MSFlexGrid1.AddItem Worksheets("Setup").Cells(cRow, 1)
cRow = cRow + 1
Cells(cRow, 1).Select
Loop
End Sub