Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Win32::OLE excel

by jsprat (Curate)
on May 30, 2003 at 17:48 UTC ( [id://261905]=note: print w/replies, xml ) Need Help??


in reply to Win32::OLE excel

I'm not 100% sure what you're asking. It sounds like you want the size of the UsedRange? If so, have a look at the Count property of the Rows and Columns collections of the UsedRange object (How's that for an awkward sentence).

It should look something like this:

use strict; use Win32::OLE; my $ole = Win32::OLE->new('Excel.Application', 'Quit') or die "$!"; $ole->{Visible} = 1; my $xls = $ole->{Workbooks}->Open('mr.xls'); my $sheet = $xls->{Sheets}->{Template}; print $sheet->{UsedRange}->{Rows}->{Count}, " rows, ", $sheet->{UsedRange}->{Columns}->{Count}, " columns used."; __END__ Output: C:\>perl xls.pl 40 rows, 11 columns used.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (2)
As of 2024-04-20 11:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found