Hi
I have on a sheet data from column A - E
000001 | ACC001 | Account Name | 25 Mar 2008 | R 20,560.00
when I list in a Combobox with 5 columns it display like this
1 | ACC001 | Account Name | 3/25/2008 | 20560
Is there a way to display exactly as it is on the sheet. I am using this code
I have tried a ListBox as well, same thing![]()
Dim MainList As Integer MainList = Sheet5.Range("A65536").End(xlUp).Row UserForm1.ComboBox1.List = Sheet5.Range("A2:E2", "A" & MainList).Value
Bookmarks