in reply to Re: Output to an Excel Document
in thread Output to an Excel Document

Agreed, just be careful if fields starting with a double quote which is not matched later on. This starts an ad-hoc interpretation of the rest of the file as CSV...

I was bitten by this just recently. Of course a simple regex will help in this case (pseudo code):

for each $field { $field =~ s/^"//; }

--
Cheers, Joe