kurtcobain has asked for the wisdom of the Perl Monks concerning the following question:
Hi, i started learning perl a couple of days ago. i try to run the above script with command perl filename.pm . it throws an error Can't locate Spreadsheet/ParseExcel.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at test.pm line 4. BEGIN failed--compilation aborted at test.pm line 4. Please help me to run this script.thanks#!/usr/bin/perl -w use strict; use Spreadsheet::ParseExcel; my $parser = Spreadsheet::ParseExcel->new(); my $workbook = $parser->parse('siemens.xls'); if ( !defined $workbook ) { die $parser->error(), ".\n"; } for my $worksheet ( $workbook->worksheets() ) { my ( $row_min, $row_max ) = $worksheet->row_range(); my ( $col_min, $col_max ) = $worksheet->col_range(); for my $row ( $row_min .. $row_max ) { for my $col ( $col_min .. $col_max ) { my $cell = $worksheet->get_cell( $row, $col ); next unless $cell; print "Row, Col = ($row, $col)\n"; print "Value = ", $cell->value(), "\n"; print "Unformatted = ", $cell->unformatted(), "\n"; print "\n"; } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: how to run this script
by CountZero (Bishop) on Oct 05, 2012 at 17:09 UTC | |
by kurtcobain (Novice) on Oct 05, 2012 at 17:15 UTC | |
by toolic (Bishop) on Oct 05, 2012 at 17:25 UTC | |
by johngg (Canon) on Oct 05, 2012 at 17:44 UTC | |
|
Re: how to run this script
by davido (Cardinal) on Oct 05, 2012 at 17:12 UTC | |
by kurtcobain (Novice) on Oct 05, 2012 at 17:51 UTC |