Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Re: writing with WriteExcel in OO style

by axelrose (Scribe)
on Mar 26, 2002 at 18:37 UTC ( [id://154468]=note: print w/replies, xml ) Need Help??


in reply to Re: writing with WriteExcel in OO style
in thread writing with WriteExcel in OO style

Thanks for your help, John, and of course for writing the module!!

I know about write_row() and write_col() but they don't fit my need. The data from a database comes in rows. I want to write them immediately and need a different format for each column. So I planned to extend my writerow() method to accept not only an arrayref to the data but also a second arrayref for the format of ach column.

Do I reinvent the wheel?
  • Comment on Re: Re: writing with WriteExcel in OO style

Replies are listed 'Best First'.
Re: Re: Re: writing with WriteExcel in OO style
by jmcnamara (Monsignor) on Mar 27, 2002 at 09:35 UTC

    Do I reinvent the wheel?

    No. :-)

    The set_column() method should allow you to set the format for a column and then have that applied to all data written to the column. However, it doesn't currently work like that and it should really be fixed.

    An easy way of adding new methods to the Worksheet class, or to any of the other classes, is to do something like this:

    #!/usr/bin/perl -w use strict; use Spreadsheet::WriteExcel; my $workbook = Spreadsheet::WriteExcel->new("test.xls"); my $worksheet = $workbook->addworksheet(); $worksheet->write ('A1', "Hello"); $worksheet->uc_write('A2', "Hello"); # New method # # The following will be appended to # Spreadsheet::WriteExcel::Worksheet # package Spreadsheet::WriteExcel::Worksheet; # # uc_write: A worksheet method that does ... # sub uc_write { my $self = shift; $self->write($_[0], uc $_[1]); }

    In the example directory of the Spreadsheet::WriteExcel distro the write_many.pl and comments.pl programs use this methodology.

    However, this is only suitable for simple or one-off solutions. If you need to do anything more complicated or maintainable it would probably be better to subclass the Worksheet class.

    --
    John.

Log In?
Username:
Password:

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

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

    No recent polls found