I am having trouble with how to put the data from the range with multiple columns and rows to a listbox.
Assume I have a range rng which multiple columns and rows I
I am assuming you want to populate 3 columns
Dim currRange As Range
Dim i As Integer
With Selection
For Each currRange In Range("yourRange")
i = i + 1
If i = 1 Then .AddItem cell.Value
If i = 2 Then .List(.ListCount - 1, 1) = "1"
If i = 3 Then
.List(.ListCount - 1, 2) = cell.Offset(0, 2).Value
i = 0
End If
Next
End With
I am assuming you have 3 columns.