in reply to Re^9: read from xlsx is throwing error
in thread read from xlsx is throwing error

Try running this script and post the results which will be in a file called perlmonks.txt

#!perl use strict; use Cwd; open my $log,'>','perlmonks.txt' or die "$!"; select $log; print getcwd(); print " $0 $^V \@INC "; print join "\n", @INC; print "\nPATH\n"; print join "\n",grep (/perl/i, split ';',$ENV{PATH}); print "\n\n"; my @mod = qw( Spreadsheet::Read Spreadsheet::WriteExcel Spreadsheet::ParseXLSX ); for (@mod){ eval ("use $_"); if ($@){ print "ERROR - $@\n"; } else { print "OK - $_\n"; } } select STDOUT; print "Done - see perlmonks.txt";
poj

Replies are listed 'Best First'.
Re^11: read from xlsx is throwing error
by smknjoe (Beadle) on Dec 20, 2016 at 20:58 UTC

    That's a useful piece of code, poj. I'm gonna save that off for a time when I might need it myself.

    Thanks,

    smknjoe