I am loading a Listbox on a Userform like so;
With Me.ListBox1
.ColumnCount = 10
.ColumnHeads = True
.ColumnWidths = "40;50;110;60;55;60;60;60;0;0"
.RowSource = Sheet1.Range("A2:M" & LastRow).Address(, , , True)
End With
Most of the time it works fine, but regularly it gives me an error when I...