Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: compare two Excel spreadsheets

by monarch (Priest)
on Jul 14, 2005 at 03:29 UTC ( [id://474730]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      use strict;
      use Spreadsheet::ParseExcel;
    ...
      }
      my $sheetone = $oBook->Worksheet('gendata') ||
        die( "No such worksheet gendata" );
    
  2. or download this
      my $oBook2nd=Spreadsheet::ParseExcel::Workbook->Parse('second.xls');
    
    ...
      }
      my $sheettwo = $oBook->Worksheet('gensearch') ||
        die( "No such worksheet gensearch" );
    
  3. or download this
      for ( my $row = 0; $row < 10; $row++ ) {
        my $search = qr/$sheettwo->{Cells}[$row][0]->{Val}/;
    ...
                  ( $row + 1 ) );
        }
      }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://474730]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-25 16:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found