sInputArray = Split(input_csv_stiring, ",")
This assumes the csv file columns are in the correct order. write each array member to the correspondong Excel column.
[Update]
ioInput is an array with same number of elements as number of columns.
While Not ioLine = ""
ioLine = ioFile.ReadLine
ioInput = Split(ioLine, ",")
End While
Also, to write to an Excel file you will need to interop with Excel from VB
http://support.microsoft.com/kb/301982[
^]