asyamonique
Well-known Member
- Joined
- Jan 29, 2008
- Messages
- 1,284
- Office Version
- 2013
- Platform
- Windows
Code:
Dim re As Range, J As Long, jj As Long6 With Sheets("list").Range("a:a").CurrentRegion.Resize(, 15)
ReDim a(1 To .Rows.Count, 1 To 15)
For J = 1 To .Rows.Count
For jj = 1 To .Columns.Count
a(J, jj) = .Cells(J, jj).Text
Next
Next
End With
With ListBox1
.ColumnCount = 15
.ColumnWidths = "0;60;60;120;120;0;0;0;0;0;0;0;100;100;0"
End With
Me.ListBox1.List = a
Hello,
Good Day,
How we can populate the datas with header on listbox if first row has headers on worksheet?
Or if I put labels on userform as headers is it possible to populate datas from starting row2?
Many thanks.