A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Run the code below into a new file.
BTW, a ListBox returns also a String, so you can use that as input for the code below.
Where the output goes... thousand ways to skin a cat.
Andreas.
Sub Test()
Dim S As String
Dim Data
Dim i As Integer
'This is the input
S = "a,b,c"
'Split the string by comma and get an array
Data = Split(S, ",")
'Loop through the array
For i = 0 To UBound(Data)
'Write into row 1
Range("A1").Offset(, i).Value = Data(i)
Next
End Sub