johnbird1988
Board Regular
- Joined
- Oct 6, 2009
- Messages
- 199
Hello
I would like some help with populating my listbox within my userform.
My source data for the useform is in a single cell. Within the cell, each column is seperated by a | and every row is a carriage return (new line)
So far I have:
But I am not having any luck, any help would be great. I am sure this can be done!
Cheers,
John
I would like some help with populating my listbox within my userform.
My source data for the useform is in a single cell. Within the cell, each column is seperated by a | and every row is a carriage return (new line)
So far I have:
Code:
With Me.ListBox1
.Clear
.ColumnCount = 6
.ColumnWidths = "50;50;50;50;50;50"
.RowSource = Split(Sheet15.Range("AR4"), "|")
End With
But I am not having any luck, any help would be great. I am sure this can be done!
Cheers,
John