in reply to Re^4: XLS to CSV file with Text wrap
in thread XLS to CSV file with Text wrap

Create a small test program for the part that is failing

#!/usr/bin/perl use strict; use warnings; use Text::CSV_XS qw( csv ); print "$^V - $Text::CSV_XS::VERSION"; my $sheet = [['a','b','c,d'],[1,2,3]]; csv(in => $sheet, out => 'file.csv');
poj

Replies are listed 'Best First'.
Re^6: XLS to CSV file with Text wrap
by kshitij (Sexton) on Sep 01, 2018 at 14:33 UTC
    Hi Poj

    Thanks a lot ! I have to install the Text::CSV in my local directory After installing the module , I could able to eradicate the above stated error.

    Thanks Kshitij