in reply to Write content of excel data in to text file

Try the print without the quotes. Change:
print FILE "$cell->value()";

to:

print FILE $cell->value();

Replies are listed 'Best First'.
Re^2: Write content of excel data in to text file
by ram31 (Novice) on Dec 05, 2013 at 20:46 UTC
    Hi, Thanks, it worked. I have not cleaned the old content as i am appending the file and couldnt see the data too :)