in reply to Re^4: Remove $
in thread Remove $

It isn't the print that's doing the interpolation of $/, it's happening inside $Sheet->Cells($rownum,"B")->{'Value'};

In which case I'd just hack it back to what it should be with (something like) $cellval = s!\n!/!g;

Replies are listed 'Best First'.
Re^6: Remove $
by rawsr71 (Novice) on Aug 27, 2007 at 17:47 UTC
    DANG!! It was that simple? Pheww. Looks like my issue is solved. Thank you to everyone for all your help!