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

How di I print the page header/footer from an excel spreadsheet

by boat73 (Scribe)
on Nov 08, 2006 at 17:00 UTC ( [id://582925]=perlquestion: print w/replies, xml ) Need Help??

boat73 has asked for the wisdom of the Perl Monks concerning the following question:

I can open a doc and read from the rows/columns but as yet can't figure out how to read the page header. Does anyone have an example?
  • Comment on How di I print the page header/footer from an excel spreadsheet

Replies are listed 'Best First'.
Re: How do I print the page header/footer from an excel spreadsheet
by Albannach (Monsignor) on Nov 08, 2006 at 18:01 UTC
    my $Book = $Excel->Workbooks->Open('test.xls'); my $Sheet = $Book->Worksheets("Sheet1"); $Sheet->Activate(); for my $position ( qw( Header Footer ) ) { for my $element ( qw( Left Center Right ) ) { my $item = $element . $position; print "$element$position: ", $Sheet->PageSetup->$item, "\n"; } }
    ++ to the first person to show me how to eliminate $item - I feel like it is unnecessary.

    --
    I'd like to be able to assign to an luser

      ++ to the first person to show me how to eliminate $item - I feel like it is unnecessary.
      $Sheet->PageSetup->${ \"$element$position" };
        You can use the "hash syntax" to access object properties (see Win32::OLE documentation)Properties of an object are implemented as a hashref, so more simply:

        $Sheet->PageSetup->{"$element$position"} # or $Sheet->PageSetup->{$element . $position}
        Update: pr
      Perfect, thanks much

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-23 10:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found