Hi all,

I have an excel file and I need to write each line of this file in a text file.

I read the first line and I write it in my text file, like this:

Open c:\test.txt for output as #1
print #1, myline

How can I write the second line of the excel file in the second line of my text file?

Thanks in advance.