Spreadsheet::Wright(3pm) | User Contributed Perl Documentation | Spreadsheet::Wright(3pm) |
Spreadsheet::Wright - simple spreadsheet worker
# EXCEL spreadsheet use Spreadsheet::Wright; my $s = Spreadsheet::Wright->new( file => 'spreadsheet.xls', format => 'xls', sheet => 'Products', styles => { money => '($#,##0_);($#,##0)', }, ); $s->addrow('foo',{ content => 'bar', type => 'number', style => 'money', font_weight => 'bold', font_color => 42, font_face => 'Times New Roman', font_size => 20, align => 'center', valign => 'vcenter', font_decoration => 'strikeout', font_style => 'italic', }); $s->addrow('foo2','bar2'); $s->freeze(1, 0); # CSV file use Spreadsheet::Wright; my $s = Spreadsheet::Wright->new( file => 'file.csv', encoding => 'iso8859', ); die $s->error if $s->error; $s->addrow('foo', 'bar');
"Spreadsheet::Wright" is a fork of Spreadsheet::Write and may be used as a drop-in replacement.
"Spreadsheet::Wright" writes files in CSV, Microsoft Excel, HTML and OpenDocument formats. It is especially suitable for building various dumps and reports where rows are built in sequence, one after another.
It is not especially suitable for modifying existing files.
The name is a not just pun on "write" - the word "wright" means worker or crafter, and "Spreadsheet::Wright" does a lot of the work of spreadsheet output for you!
$spreadsheet = Spreadsheet::Wright->new( file => 'table.xls', styles => { mynumber => '#,##0.00', }, );
Creates a new spreadsheet object. It takes a list of options. The following are valid:
If file format is 'auto' (or omitted), the format is guessed from the filename extension, defaulting to 'csv'.
content value to put into cell style formatting style, as defined in new() type type of the content (defaults to 'auto') format number format (see Spreadsheet::WriteExcel for details) font_weight weight of font. Only valid value is 'bold' font_style style of font. Only valid value is 'italic' font_decoration 'underline' or 'strikeout' (or both, space separated) font_face font of column; default is 'Arial' font_color color of font (see Spreadsheet::WriteExcel for color values) font_size size of font align alignment valign vertical alignment width column width, excel units (only makes sense once per column) header boolean; is this cell a header?
Styles can be used to assign default values for any of these formatting parameters thus allowing easy global changes. Other parameters specified override style definitions.
Example:
my $sp = Spreadsheet::Wright->new( file => 'employees.xls', styles => { important => { font_weight => 'bold' }, }, ); $sp->addrow( { content => 'First Name', font_weight => 'bold' }, { content => 'Last Name', font_weight => 'bold' }, { content => 'Age', style => 'important' }, ); $sp->addrow("John", "Doe", 34); $sp->addrow("Susan", "Smith", 28);
Note that in this example all header cells will have identical formatting even though some use direct formats and one uses style.
If you want to store text that looks like a number you might want to use { type => 'string', format => '@' } arguments. By default the type detection is automatic, as done by for instance Spreadsheet::WriteExcel write() method.
It is also possible to supply an array reference in the 'content' parameter of the extended format. It means to use the same formatting for as many cells as there are elements in this array. Useful for creating header rows. For instance, the above example can be rewritten as:
$sp->addrow({ style => 'important', content => ['First Name', 'Last Name', 'Age'], });
Not all styling options are supported in all formats.
Each argument is an arrayref representing a row.
Any argument that is not a reference (i.e. a scalar) is taken to be the title of a new worksheet.
For CSV format this call is NOT ignored, but produces a fatal error currently.
Please report any bugs to <http://rt.cpan.org/>.
Spreadsheet::Write.
Toby Inkster <tobyink@cpan.org>.
Excel and CSV output based almost entirely on work by Nick Eremeev <nick.eremeev@gmail.com> <http://ejelta.com/>.
XLSX output based on work by Andrew Maltsev (AMALTSEV).
Copyright 2007 Nick Eremeev.
Copyright 2010-2011 Toby Inkster.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
2022-11-19 | perl v5.36.0 |