I didn't scroll to the right on the sheet and missed those columns.
Replace the existing code with the following one.
The red colored numbers in the code are the column indexes which are to be populated in the ListBox.
Private Sub UserForm_Initialize()
Dim ws As Worksheet
Dim arr
Dim lr As Long
Set ws = Sheets("Sheet1")
lr = ws.Cells.Find("*", SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row
arr = Application.Index(ws.Cells, Evaluate("row(2:" & lr & ")"), Array(3, 4, 8, 9, 10, 12, 21, 22, 23, 24, 35, 38, 39))
Me.ListBox1.List = arr
End Sub
Bookmarks