Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Appending data into an Excel Sheet

by Brutha (Friar)
on Feb 28, 2008 at 13:06 UTC ( [id://670900]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $Excel =  Win32::OLE->GetActiveObject('Excel.Application');
    unless ($Excel) {
    ...
    }
    my $xls = $Excel->Workbooks->Open(...);
    my $sheet = $xls->Worksheets(1);
    
  2. or download this
     my $lastrow = $sheet->UsedRange->Find(
            {   What            => "*",
    ...
                SearchOrder     => xlByRows
            }
        )->{Row};
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-24 22:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found