
Originally Posted by
Jonathan78
Hello Palmetto,
I must have overlooked your suggestion, sorry for that

However I did give it a try, Although it loads instantly [snb's takes a lot of time to load] it seems instable. After I run your code the list keeps on flickering when selecting an item on it.
Neither of the solutions gave satisfaction, although Snb' works fine on a Listbox in a Userform.
I'll have to think of something else.
Thanks however both for helping!
Hi Jonathan, how can i plement it in the code below?
Private Sub UserForm_Initialize()
Dim x As Long
Dim k As Long
Dim j As Long
x = Sheets("INPUT WV").Range("D10:M540").Rows.Count
ListBox1.List = Sheets("INPUT WV").Range("D10:M540").Value
For k = 1 To x 'rows
For j = 1 To 10 'columns
ListBox1.List(k - 1, j - 1) = VBA.Format(ListBox1.List(k - 1, j - 1), "#,##0")
Next
Next
For j = 1 To 10
Me.Controls("TextBox" & j).Text = ""
Next j
End Sub
Bookmarks