What I gave you is an example.
You did not put how your data is, nor did you put exactly which cells your data is in.
If you do not provide complete information, we assume that you will be able to adapt the example.
So in order to help you you must give an example of how your data is.
I'll try again, but I don't know which row your headers are in, nor do I know which row your data starts in.
I insist, if you do not provide complete information about your data, I will only be guessing
Replace all your code from initalize event for this:
VBA Code:
Private Sub UserForm_Initialize()
Dim lr As Long
Dim sh As Worksheet
'set the sheet with data
Set sh = Sheets("In Day VL")
'get the last row in sheet
lr = sh.Cells.Find("*", , xlValues, xlPart, xlByRows, xlPrevious).Row
'work with listbox1
With ListBox1
.ColumnCount = 10 'Set the column Amount
.ColumnHeads = True
.RowSource = "'" & sh.Name & "'!" & sh.Range("A2:J" & lr).Address 'Fill the Listbox
End With
End Sub