Hawkide
The easiest way to do it (i don't know the Excel vba for putting text in a cell so bear with me)
Open "c:\Temp\Test.txt" For Input As #1
Do While Not EOF(1)
Line Input #1, StrFileLine
For n = 1 to len(StrFileLine)
singlecharacter = mid(StrFileLine,n,1)
'DUMP SINGLECHARACTER In CELL
Next n
Loop
Hope It Helps
Mike