package Spreadsheet::WriteExcelXML; ############################################################################### # # WriteExcel. # # Spreadsheet::WriteExcel - Write to a cross-platform Excel binary file. # # Copyright 2000-2005, John McNamara, jmcnamara@cpan.org # # Documentation after __END__ # use Exporter; use strict; use Spreadsheet::WriteExcelXML::Workbook; use vars qw($VERSION @ISA); @ISA = qw(Spreadsheet::WriteExcelXML::Workbook Exporter); $VERSION = '0.10'; # Bachelor Kisses. ############################################################################### # # new() # sub new { my $class = shift; my $self = Spreadsheet::WriteExcelXML::Workbook->new(@_); # Check for file creation failures before re-blessing bless $self, $class if defined $self; return $self; } 1; __END__ =head1 NAME Spreadsheet::WriteExcelXML - Create an Excel file in XML format. =head1 VERSION This document refers to version 0.10 of Spreadsheet::WriteExcelXML, released April 29, 2004. =head1 SYNOPSIS To write a string, a formatted string, a number and a formula to the first worksheet in an Excel XML spreadsheet called perl.xls: use Spreadsheet::WriteExcelXML; # Create a new Excel workbook my $workbook = Spreadsheet::WriteExcelXML->new("perl.xls"); # Add a worksheet $worksheet = $workbook->add_worksheet(); # Add and define a format $format = $workbook->add_format(); # Add a format $format->set_bold(); $format->set_color('red'); $format->set_align('center'); # Write a formatted and unformatted string, row and column notation. $col = $row = 0; $worksheet->write($row, $col, "Hi Excel!", $format); $worksheet->write(1, $col, "Hi Excel!"); # Write a number and a formula using A1 notation $worksheet->write('A3', 1.2345); $worksheet->write('A4', '=SIN(PI()/4)'); =head1 DESCRIPTION The C module can be used to create an Excel file in XML format. The Excel XML format is supported in Excel 2002 and 2003. Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, and formulas can be written to the cells. The module supports strings up to 32,767 characters and the strings can be in UTF8 format. C uses the same interface as C. This module cannot, as yet, be used to write to an existing Excel XML file. =head1 Spreadsheet::WriteExcelXML and Spreadsheet::WriteExcel C uses the same interface as the C module which produces an Excel file in binary format. While Spreadsheet::WriteExcelXML doesn't currently support all of the features of Spreadsheet::WriteExcel the intention is that it eventually will. However there are some features of the Excel binary format that aren't supported in by the Excel XML specification: =over 4 =item * Graphs. =item * Macros. =item * Outlines and grouping. (supported by Spreadsheet::WriteExcel) =item * Password protection. (supported by Spreadsheet::WriteExcel) =item * Embedded images. (supported by Spreadsheet::WriteExcel) =back =head1 QUICK START Spreadsheet::WriteExcelXML tries to provide an interface to as many of Excel's features as possible. As a result there is a lot of documentation to accompany the interface and it can be difficult at first glance to see what it important and what is not. So for those of you who prefer to assemble Ikea furniture first and then read the instructions, here are three easy steps: 1. Create a new Excel I (i.e. file) using C. 2. Add a I to the new workbook using C. 3. Write to the worksheet using C. Like this: use Spreadsheet::WriteExcelXML; # Step 0 my $workbook = Spreadsheet::WriteExcelXML->new("perl.xls"); # Step 1 $worksheet = $workbook->add_worksheet(); # Step 2 $worksheet->write('A1', "Hi Excel!"); # Step 3 This will create an Excel file called C with a single worksheet and the text C<"Hi Excel!"> in the relevant cell. And that's it. Okay, so there is actually a zeroth step as well, but C goes without saying. There are also more than 40 examples that come with the distribution and which you can use to get you started. See L. Those of you who read the instructions first and assemble the furniture afterwards will know how to proceed. ;-) =head1 WORKBOOK METHODS The Spreadsheet::WriteExcelXML module provides an object oriented interface to a new Excel workbook. The following methods are available through a new workbook. new() close() set_tempdir() ** add_worksheet() add_format() set_custom_color() * sheets() set_1904() * set_codepage() * * Not yet supported. See Spreadsheet::WriteExcel. ** Not required by Spreadsheet::WriteExcelXML. If you are unfamiliar with object oriented interfaces or the way that they are implemented in Perl have a look at C and C in the main Perl documentation. =head2 new() A new Excel workbook is created using the C constructor which accepts either a filename or a filehandle as a parameter. The following example creates a new Excel file based on a filename: my $workbook = Spreadsheet::WriteExcelXML->new('filename.xls'); my $worksheet = $workbook->add_worksheet(); $worksheet->write(0, 0, "Hi Excel!"); Here are some other examples of using C with filenames: my $workbook1 = Spreadsheet::WriteExcelXML->new($filename); my $workbook2 = Spreadsheet::WriteExcelXML->new("/tmp/filename.xls"); my $workbook3 = Spreadsheet::WriteExcelXML->new("c:\\tmp\\filename.xls"); my $workbook4 = Spreadsheet::WriteExcelXML->new('c:\tmp\filename.xls'); The last two examples demonstrates how to create a file on DOS or Windows where it is necessary to either escape the directory separator C<\> or to use single quotes to ensure that it isn't interpolated. For more information see C. The C constructor returns a Spreadsheet::WriteExcelXML object that you can use to add worksheets and store data. It should be noted that although C is not specifically required it defines the scope of the new workbook variable and, in the majority of cases, ensures that the workbook is closed properly without explicitly calling the C method. If the file cannot be created, due to file permissions or some other reason, C will return C. Therefore, it is good practice to check the return value of C before proceeding. As usual the Perl variable C<$!> will be set if there is a file creation error. You will also see one of the warning messages detailed in L: my $workbook = Spreadsheet::WriteExcelXML->new('protected.xls'); die "Problems creating new Excel file: $!" unless defined $workbook; You can also pass a valid filehandle to the C constructor. For example in a CGI program you could do something like this: my $workbook = Spreadsheet::WriteExcelXML->new(\*STDOUT); For CGI programs you can also use the special Perl filename C<'-'> which will redirect the output to STDOUT: my $workbook = Spreadsheet::WriteExcelXML->new('-'); See also, the C program in the C directory of the distro. However, this special case will not work in C programs where you will have to do something like the following: # mod_perl 1 ... tie *XLS, 'Apache'; my $workbook = Spreadsheet::WriteExcelXML->new(\*XLS); ... # mod_perl 2 ... tie *XLS => $r; # Tie to the Apache::RequestRec object my $workbook = Spreadsheet::WriteExcelXML->new(\*XLS); ... See also, the C and C programs in the C directory of the distro. Filehandles can also be useful if you want to stream an Excel file over a socket or if you want to store an Excel file in a scalar. For example here is a way to write an Excel file to a scalar with C: #!/usr/bin/perl -w use strict; use Spreadsheet::WriteExcel; # Requires perl 5.8 or later open my $fh, '>', \my $str or die "Failed to open filehandle: $!"; my $workbook = Spreadsheet::WriteExcel->new($fh); my $worksheet = $workbook->add_worksheet(); $worksheet->write(0, 0, "Hi Excel!"); $workbook->close(); # The Excel file in now in $str. print $str; See also the C and C programs in the C directory of the distro. =head2 close() The C method can be used to explicitly close an Excel file. $workbook->close(); An explicit C is required if the file must be closed prior to performing some external action on it such as copying it, reading its size or attaching it to an email. In addition, C may be required to prevent perl's garbage collector from disposing of the Workbook, Worksheet and Format objects in the wrong order. Situations where this can occur are: =over 4 =item * If C was not used to declare the scope of a workbook variable created using C. =item * If the C, C or C methods are called in subroutines. =back The reason for this is that Spreadsheet::WriteExcelXML relies on Perl's C mechanism to trigger destructor methods in a specific sequence. This may not happen in cases where the Workbook, Worksheet and Format variables are not lexically scoped or where they have different lexical scopes. In general, if you create a file with a size of 0 bytes or you fail to create a file you need to call C. The return value of C is the same as that returned by perl when it closes the file created by C. This allows you to handle error conditions in the usual way: $workbook->close() or die "Error closing file: $!"; =head2 set_tempdir() This method isn't used by Spreadsheet::WriteExcelXML. It is only required by Spreadsheet::WriteExcel. =head2 add_worksheet($sheetname) At least one worksheet should be added to a new workbook. A worksheet is used to write data into cells: $worksheet1 = $workbook->add_worksheet(); # Sheet1 $worksheet2 = $workbook->add_worksheet('Foglio2'); # Foglio2 $worksheet3 = $workbook->add_worksheet('Data'); # Data $worksheet4 = $workbook->add_worksheet(); # Sheet4 If C<$sheetname> is not specified the default Excel convention will be followed, i.e. Sheet1, Sheet2, etc. The worksheet name must be a valid Excel worksheet name, i.e. it cannot contain any of the following characters, C<: * ? / \> and it must be less than 32 characters. In addition, you cannot use the same, case insensitive, C<$sheetname> for more than one worksheet. =head2 add_format(%properties) The C method can be used to create new Format objects which are used to apply formatting to a cell. You can either define the properties at creation time via a hash of property values or later via method calls. $format1 = $workbook->add_format(%props); # Set properties at creation $format2 = $workbook->add_format(); # Set properties later See the L section for more details about Format properties and how to set them. =head2 set_custom_color($index, $red, $green, $blue) B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. The C method can be used to override one of the built-in palette values with a more suitable colour. The value for C<$index> should be in the range 8..63, see L. The default named colours use the following indices: 8 => black 9 => white 10 => red 11 => lime 12 => blue 13 => yellow 14 => magenta 15 => cyan 16 => brown 17 => green 18 => navy 20 => purple 22 => silver 23 => gray 53 => orange A new colour is set using its RGB (red green blue) components. The C<$red>, C<$green> and C<$blue> values must be in the range 0..255. You can determine the required values in Excel using the COptions-EColors-EModify> dialog. The C workbook method can also be used with a HTML style C<#rrggbb> hex value: $workbook->set_custom_color(40, 255, 102, 0 ); # Orange $workbook->set_custom_color(40, 0xFF, 0x66, 0x00); # Same thing $workbook->set_custom_color(40, '#FF6600' ); # Same thing my $font = $workbook->add_format(color => 40); # Use the modified colour The return value from C is the index of the colour that was changed: my $ferrari = $workbook->set_custom_color(40, 216, 12, 12); my $format = $workbook->add_format( bg_color => $ferrari, pattern => 1, border => 1 ); =head2 sheets(0, 1, ...) The C method returns a list, or a sliced list, of the worksheets in a workbook. If no arguments are passed the method returns a list of all the worksheets in the workbook. This is useful if you want to repeat an operation on each worksheet: foreach $worksheet ($workbook->sheets()) { print $worksheet->get_name(); } You can also specify a slice list to return one or more worksheet objects: $worksheet = $workbook->sheets(0); $worksheet->write('A1', "Hello"); Or since return value from C is a reference to a worksheet object you can write the above example as: $workbook->sheets(0)->write('A1', "Hello"); The following example returns the first and last worksheet in a workbook: foreach $worksheet ($workbook->sheets(0, -1)) { # Do something } Array slices are explained in the perldata manpage. =head2 set_1904() B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. Excel stores dates as real numbers where the integer part stores the number of days since the epoch and the fractional part stores the percentage of the day. The epoch can be either 1900 or 1904. Excel for Windows uses 1900 and Excel for Macintosh uses 1904. However, Excel on either platform will convert automatically between one system and the other. Spreadsheet::WriteExcelXML stores dates in the 1900 format by default. If you wish to change this you can call the C workbook method. You can query the current value by calling the C workbook method. This returns 0 for 1900 and 1 for 1904. See also L for more information about working with Excel's date system. In general you probably won't need to use C. =head2 set_codepage($codepage) B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. The default code page or character set used by Spreadsheet::WriteExcelXML is ANSI. This is also the default used by Excel for Windows. Occasionally however it may be necessary to change the code page via the C method. Changing the code page may be required if your are using Spreadsheet::WriteExcelXML on the Macintosh and you are using characters outside the ASCII 128 character set: $workbook->set_codepage(1); # ANSI, MS Windows $workbook->set_codepage(2); # Apple Macintosh The C method is rarely required. =head1 WORKSHEET METHODS A new worksheet is created by calling the C method from a workbook object: $worksheet1 = $workbook->add_worksheet(); $worksheet2 = $workbook->add_worksheet(); The following methods are available through a new worksheet: write() write_number() write_string() keep_leading_zeros() write_blank() write_row() write_col() write_date_time() write_url() write_url_range() * write_formula() store_formula() ** repeat_formula() ** insert_bitmap() *** add_write_handler() get_name() activate() * select() * set_first_sheet() * protect() * set_selection() * set_row() set_column() outline_settings() *** freeze_panes() * thaw_panes() * merge_range() set_zoom() * autofilter() filter_column() * Not yet supported. See Spreadsheet::WriteExcel. ** Not required by Spreadsheet::WriteExcelXML. *** Not supported by Excel XML. =head2 Cell notation Spreadsheet::WriteExcelXML supports two forms of notation to designate the position of cells: Row-column notation and A1 notation. Row-column notation uses a zero based index for both row and column while A1 notation uses the standard Excel alphanumeric sequence of column letter and 1-based row. For example: (0, 0) # The top left cell in row-column notation. ('A1') # The top left cell in A1 notation. (1999, 29) # Row-column notation. ('AD2000') # The same cell in A1 notation. Row-column notation is useful if you are referring to cells programmatically: for my $i (0 .. 9) { $worksheet->write($i, 0, 'Hello'); # Cells A1 to A10 } A1 notation is useful for setting up a worksheet manually and for working with formulas: $worksheet->write('H1', 200); $worksheet->write('H2', '=H1+1'); In formulas and applicable methods you can also use the C column notation: $worksheet->write('A1', '=SUM(B:B)'); The C module that is included in the distro contains helper functions for dealing with A1 notation, for example: use Spreadsheet::WriteExcelXML::Utility; ($row, $col) = xl_cell_to_rowcol('C2'); # (1, 2) $str = xl_rowcol_to_cell(1, 2); # C2 For simplicity, the parameter lists for the worksheet method calls in the following sections are given in terms of row-column notation. In all cases it is also possible to use A1 notation. Note: in Excel it is also possible to use a R1C1 notation. This is not supported by Spreadsheet::WriteExcelXML. =head2 write($row, $column, $token, $format) Excel makes a distinction between data types such as strings, numbers, blanks, formulas and hyperlinks. To simplify the process of writing data the C method acts as a general alias for several more specific methods: write_string() write_number() write_blank() write_formula() write_url() write_row() write_col() The general rule is that if the data looks like a I then a I is written. Here are some examples in both row-column and A1 notation: # Same as: $worksheet->write(0, 0, "Hello" ); # write_string() $worksheet->write(1, 0, 'One' ); # write_string() $worksheet->write(2, 0, 2 ); # write_number() $worksheet->write(3, 0, 3.00001 ); # write_number() $worksheet->write(4, 0, "" ); # write_blank() $worksheet->write(5, 0, '' ); # write_blank() $worksheet->write(6, 0, undef ); # write_blank() $worksheet->write(7, 0 ); # write_blank() $worksheet->write(8, 0, 'http://www.perl.com/'); # write_url() $worksheet->write('A9', 'ftp://ftp.cpan.org/' ); # write_url() $worksheet->write('A10', 'internal:Sheet1!A1' ); # write_url() $worksheet->write('A11', 'external:c:\foo.xls' ); # write_url() $worksheet->write('A12', '=A3 + 3*A4' ); # write_formula() $worksheet->write('A13', '=SIN(PI()/4)' ); # write_formula() $worksheet->write('A14', \@array ); # write_row() $worksheet->write('A15', [\@array] ); # write_col() # And if the keep_leading_zeros property is set: $worksheet->write('A16, 2 ); # write_number() $worksheet->write('A17, 02 ); # write_string() $worksheet->write('A18, 00002 ); # write_string() # Write an array formula. Not available in Spreadsheet::WriteExcel. $worksheet->write('A18, '{=SUM(A1:B1*A2:B2)}' ); # write_formula() The "looks like" rule is defined by regular expressions: C if C<$token> is a number based on the following regex: C<$token =~ /^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/>. C if C is set and C<$token> is an integer with leading zeros based on the following regex: C<$token =~ /^0\d+$/>. C if C<$token> is undef or a blank string: C, C<""> or C<''>. C if C<$token> is a http, https, ftp or mailto URL based on the following regexes: C<$token =~ m|^[fh]tt?ps?://|> or C<$token =~ m|^mailto:|>. C if C<$token> is an internal or external sheet reference based on the following regex: C<$token =~ m[^(in|ex)ternal:]>. C if the first character of C<$token> is C<"=">. C if the C<$token> matches C. C if C<$token> is an array ref. C if C<$token> is an array ref of array refs. C if none of the previous conditions apply. The C<$format> parameter is optional. It should be a valid Format object, see L: my $format = $workbook->add_format(); $format->set_bold(); $format->set_color('red'); $format->set_align('center'); $worksheet->write(4, 0, "Hello", $format ); # Formatted string The write() method will ignore empty strings or C tokens unless a format is also supplied. As such you needn't worry about special handling for empty or C values in your data. See also the C method. One problem with the C method is that occasionally data looks like a number but you don't want it treated as a number. For example, zip codes or ID numbers often start with a leading zero. If you write this data as a number then the leading zero(s) will be stripped. You can change this default behaviour by using the C method. While this property is in place any integers with leading zeros will be treated as strings and the zeros will be preserved. See the C section for a full discussion of this issue. You can also add your own data handlers to the C method using C. On systems with C and later the C method will also handle strings in Perl's C format. The C methods return: 0 for success. -1 for insufficient number of arguments. -2 for row or column out of bounds. -3 for string too long. =head2 write_number($row, $column, $number, $format) Write an integer or a float to the cell specified by C<$row> and C<$column>: $worksheet->write_number(0, 0, 123456); $worksheet->write_number('A2', 2.3451); See the note about L. The C<$format> parameter is optional. In general it is sufficient to use the C method. =head2 write_string($row, $column, $string, $format) Write a string to the cell specified by C<$row> and C<$column>: $worksheet->write_string(0, 0, "Your text here" ); $worksheet->write_string('A2', "or here" ); The maximum string size is 32,767 characters and the string can be in UTF8 format. The C<$format> parameter is optional. On systems with C and later the C method will also handle strings in Perl's C format. See also the C programs in the examples directory of the distro. In general it is sufficient to use the C method. However, you may sometimes wish to use the C method to write data that looks like a number but that you don't want treated as a number. For example, zip codes or phone numbers: # Write as a plain string $worksheet->write_string('A1', '01209'); However, if the user edits this string Excel may convert it back to a number. To get around this you can use the Excel text format C<@>: # Format as a string. Doesn't change to a number when edited my $format1 = $workbook->add_format(num_format => '@'); $worksheet->write_string('A2', '01209', $format1); See also the note about L. =head2 keep_leading_zeros() This method changes the default handling of integers with leading zeros when using the C method. The C method uses regular expressions to determine what type of data to write to an Excel worksheet. If the data looks like a number it writes a number using C. One problem with this approach is that occasionally data looks like a number but you don't want it treated as a number. Zip codes and ID numbers, for example, often start with a leading zero. If you write this data as a number then the leading zero(s) will be stripped. This is the also the default behaviour when you enter data manually in Excel. To get around this you can use one of three options. Write a formatted number, write the number as a string or use the C method to change the default behaviour of C: # Implicitly write a number, the leading zero is removed: 1209 $worksheet->write('A1', '01209'); # Write a zero padded number using a format: 01209 my $format1 = $workbook->add_format(num_format => '00000'); $worksheet->write('A2', '01209', $format1); # Write explicitly as a string: 01209 $worksheet->write_string('A3', '01209'); # Write implicitly as a string: 01209 $worksheet->keep_leading_zeros(); $worksheet->write('A4', '01209'); The above code would generate a worksheet that looked like the following: ----------------------------------------------------------- | | A | B | C | D | ... ----------------------------------------------------------- | 1 | 1209 | | | | ... | 2 | 01209 | | | | ... | 3 | 01209 | | | | ... | 4 | 01209 | | | | ... The examples are on different sides of the cells due to the fact that Excel displays strings with a left justification and numbers with a right justification by default. You can change this by using a format to justify the data, see L. It should be noted that if the user edits the data in examples C and C the strings will revert back to numbers. Again this is Excel's default behaviour. To avoid this you can use the text format C<@>: # Format as a string (01209) my $format2 = $workbook->add_format(num_format => '@'); $worksheet->write_string('A5', '01209', $format2); The C property is off by default. The C method takes 0 or 1 as an argument. It defaults to 1 if an argument isn't specified: $worksheet->keep_leading_zeros(); # Set on $worksheet->keep_leading_zeros(1); # Set on $worksheet->keep_leading_zeros(0); # Set off See also the C method. =head2 write_blank($row, $column, $format) Write a blank cell specified by C<$row> and C<$column>: $worksheet->write_blank(0, 0, $format); This method is used to add formatting to a cell which doesn't contain a string or number value. Excel differentiates between an "Empty" cell and a "Blank" cell. An "Empty" cell is a cell which doesn't contain data whilst a "Blank" cell is a cell which doesn't contain data but does contain formatting. Excel stores "Blank" cells but ignores "Empty" cells. As such, if you write an empty cell without formatting it is ignored: $worksheet->write('A1', undef, $format); # write_blank() $worksheet->write('A2', undef ); # Ignored This seemingly uninteresting fact means that you can write arrays of data without special treatment for undef or empty string values. See the note about L. =head2 write_row($row, $column, $array_ref, $format) The C method can be used to write a 1D or 2D array of data in one go. This is useful for converting the results of a database query into an Excel worksheet. You must pass a reference to the array of data rather than the array itself. The C method is then called for each element of the data. For example: @array = ('awk', 'gawk', 'mawk'); $array_ref = \@array; $worksheet->write_row(0, 0, $array_ref); # The above example is equivalent to: $worksheet->write(0, 0, $array[0]); $worksheet->write(0, 1, $array[1]); $worksheet->write(0, 2, $array[2]); Note: For convenience the C method behaves in the same way as C if it is passed an array reference. Therefore the following two method calls are equivalent: $worksheet->write_row('A1', $array_ref); # Write a row of data $worksheet->write( 'A1', $array_ref); # Same thing As with all of the write methods the C<$format> parameter is optional. If a format is specified it is applied to all the elements of the data array. Array references within the data will be treated as columns. This allows you to write 2D arrays of data in one go. For example: @eec = ( ['maggie', 'milly', 'molly', 'may' ], [13, 14, 15, 16 ], ['shell', 'star', 'crab', 'stone'] ); $worksheet->write_row('A1', \@eec); Would produce a worksheet as follows: ----------------------------------------------------------- | | A | B | C | D | E | ... ----------------------------------------------------------- | 1 | maggie | 13 | shell | ... | ... | ... | 2 | milly | 14 | star | ... | ... | ... | 3 | molly | 15 | crab | ... | ... | ... | 4 | may | 16 | stone | ... | ... | ... | 5 | ... | ... | ... | ... | ... | ... | 6 | ... | ... | ... | ... | ... | ... To write the data in a row-column order refer to the C method below. Any C values in the data will be ignored unless a format is applied to the data, in which case a formatted blank cell will be written. In either case the appropriate row or column value will still be incremented. To find out more about array references refer to C and C in the main Perl documentation. To find out more about 2D arrays or "lists of lists" refer to C. The C method returns the first error encountered when writing the elements of the data or zero if no errors were encountered. See the return values described for the C method above. See also the C program in the C directory of the distro. The C method allows the following idiomatic conversion of a text file to an Excel file: #!/usr/bin/perl -w use strict; use Spreadsheet::WriteExcelXML; my $workbook = Spreadsheet::WriteExcelXML->new('file.xls'); my $worksheet = $workbook->add_worksheet(); open INPUT, "file.txt" or die "Couldn't open file: $!"; $worksheet->write($.-1, 0, [split]) while ; =head2 write_col($row, $column, $array_ref, $format) The C method can be used to write a 1D or 2D array of data in one go. This is useful for converting the results of a database query into an Excel worksheet. You must pass a reference to the array of data rather than the array itself. The C method is then called for each element of the data. For example: @array = ('awk', 'gawk', 'mawk'); $array_ref = \@array; $worksheet->write_col(0, 0, $array_ref); # The above example is equivalent to: $worksheet->write(0, 0, $array[0]); $worksheet->write(1, 0, $array[1]); $worksheet->write(2, 0, $array[2]); As with all of the write methods the C<$format> parameter is optional. If a format is specified it is applied to all the elements of the data array. Array references within the data will be treated as rows. This allows you to write 2D arrays of data in one go. For example: @eec = ( ['maggie', 'milly', 'molly', 'may' ], [13, 14, 15, 16 ], ['shell', 'star', 'crab', 'stone'] ); $worksheet->write_col('A1', \@eec); Would produce a worksheet as follows: ----------------------------------------------------------- | | A | B | C | D | E | ... ----------------------------------------------------------- | 1 | maggie | milly | molly | may | ... | ... | 2 | 13 | 14 | 15 | 16 | ... | ... | 3 | shell | star | crab | stone | ... | ... | 4 | ... | ... | ... | ... | ... | ... | 5 | ... | ... | ... | ... | ... | ... | 6 | ... | ... | ... | ... | ... | ... To write the data in a column-row order refer to the C method above. Any C values in the data will be ignored unless a format is applied to the data, in which case a formatted blank cell will be written. In either case the appropriate row or column value will still be incremented. As noted above the C method can be used as a synonym for C and C handles nested array refs as columns. Therefore, the following two method calls are equivalent although the more explicit call to C would be preferable for maintainability: $worksheet->write_col('A1', $array_ref ); # Write a column of data $worksheet->write( 'A1', [ $array_ref ]); # Same thing To find out more about array references refer to C and C in the main Perl documentation. To find out more about 2D arrays or "lists of lists" refer to C. The C method returns the first error encountered when writing the elements of the data or zero if no errors were encountered. See the return values described for the C method above. See also the C program in the C directory of the distro. =head2 write_date_time($row, $col, $date_string, $format) Write a date to the cell specified by C<$row> and C<$column>: $worksheet->write_date_time('A1', '2004-05-13T23:20', $date_format); The C<$date_string> must be in the following format: yyyy-mm-ddThh:mm:ss.sss This is an ISO8601 date but it should be noted that the full range of ISO8601 formats are not supported. A date should always have a C<$format>, otherwise it will appear as a number, see L and L. Here is a typical example: my $date_format = $workbook->add_format(num_format => 'mm/dd/yy'); $worksheet->write_date_time('A1', '2004-05-13T23:20', $date_format); Spreadsheet::WriteExcelXML also allows Excel's newer text description formats: General Date Short Date Medium Date Long Date Short Time Medium Time Long Time my $date_format = $workbook->add_format(num_format => 'Short Date'); $worksheet->write_date_time('A1', '2004-05-13T23:20', $date_format); Valid dates should be in the range 1900-01-01 to 9999-12-31, for the 1900 epoch. As with Excel, dates outside these ranges will be written as a string. The 1904 epoch is not supported in this release. To write a time with a zero date use the date C<1899-12-31>. This is an Excel quirk. See L. $worksheet->write_date_time('A1', '1899-12-31T23:20', $date_format); See also the C program in the C directory of the distro. =head2 write_url($row, $col, $url, $format, $string, $tip) Write a hyperlink to a URL in the cell specified by C<$row> and C<$column>. The hyperlink is comprised of two elements: the visible label and the invisible link. The visible label is the same as the link unless an alternative string is specified. The parameters C<$format>, C<$string> and C<$tip> are optional. Note however that without a C<$format> the url will not appear with the standard blue underline. This behaviour is different from older versions of C. To achieve this effect you must add an explicit format: my $format = $workbook->add_format(color => 'blue', underline => 1); You can add a I to the url by specifying the C<$tip> parameter. This is feature isn't supported in C. There are four web style URI's supported: C, C, C and C: $worksheet->write_url(0, 0, 'ftp://www.perl.org/', $format ); $worksheet->write_url(1, 0, 'http://www.perl.com/', $format 'Perl home'); $worksheet->write_url('A3', 'http://www.perl.com/', $format ); $worksheet->write_url('A4', 'http://www.perl.com/', 'Perl home',$format); $worksheet->write_url('A5', 'mailto:jmcnamara@cpan.org' ); There are two local URIs supported: C and C. These are used for hyperlinks to internal worksheet references or external workbook and worksheet references: $worksheet->write_url('A6', 'internal:Sheet2!A1', $format); $worksheet->write_url('A7', 'internal:Sheet2!A1:B2', $format); $worksheet->write_url('A8', q{internal:'Sales Data'!A1}, $format); $worksheet->write_url('A9', 'external:c:\temp\foo.xls', $format); $worksheet->write_url('A10', 'external:c:\temp\foo.xls#Sheet2!A1'); $worksheet->write_url('A11', 'external:\\\\NETWORK\share\foo.xls'); Note that the relative style directory link such as C< ..\foo.xls> is not supported by Excel XML. You must use an absolute directory link instead. All of the these URI types are recognised by the C method, see above. Worksheet references are typically of the form C. You can also refer to a worksheet range using the standard Excel notation: C. In external links the workbook and worksheet name must be separated by the C<#> character: C. You can also link to a named range in the target worksheet. For example say you have a named range called C in the workbook C you could link to it as follows: $worksheet->write_url('A14', 'external:c:\temp\foo.xls#my_name'); Note, you cannot currently create named ranges with C. Excel requires that worksheet names containing spaces or non alphanumeric characters are single quoted as follows C<'Sales Data'!A1>. If you need to do this in a single quoted string then you can either escape the single quotes C<\'> or use the quote operator C as described in C in the main Perl documentation. Links to network files are also supported. MS/Novell Network files normally begin with two back slashes as follows C<\\NETWORK\etc>. In order to generate this in a single or double quoted string you will have to escape the backslashes, C<'\\\\NETWORK\etc'>. If you are using double quote strings then you should be careful to escape anything that looks like a metacharacter. For more information see C. Finally, you can avoid most of these quoting problems by using forward slashes. These are translated internally to backslashes: $worksheet->write_url('A14', "external:c:/temp/foo.xls" ); $worksheet->write_url('A15', 'external://NETWORK/share/foo.xls' ); See also, the note about L. =head2 write_url_range($row1, $col1, $row2, $col2, $url, $string, $format) B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. This method is essentially the same as the C method described above. The main difference is that you can specify a link for a range of cells: $worksheet->write_url(0, 0, 0, 3, 'ftp://www.perl.org/' ); $worksheet->write_url(1, 0, 0, 3, 'http://www.perl.com/', 'Perl home'); $worksheet->write_url('A3:D3', 'internal:Sheet2!A1' ); $worksheet->write_url('A4:D4', 'external:c:\temp\foo.xls' ); This method is generally only required when used in conjunction with merged cells. See the C method and the C property of a Format object, L. There is no way to force this behaviour through the C method. The parameters C<$string> and the C<$format> are optional and their position is interchangeable. However, they are applied only to the first cell in the range. See also, the note about L. =head2 write_formula($row, $column, $formula, $format) Write a formula or function to the cell specified by C<$row> and C<$column>: $worksheet->write_formula(0, 0, '=$B$3 + B4' ); $worksheet->write_formula(1, 0, '=SIN(PI()/4)'); $worksheet->write_formula(2, 0, '=SUM(B1:B5)' ); $worksheet->write_formula('A4', '=IF(A3>1,"Yes", "No")' ); $worksheet->write_formula('A5', '=AVERAGE(1, 2, 3, 4)' ); $worksheet->write_formula('A6', '=DATEVALUE("1-Jan-2001")'); Array formulas are also supported: $worksheet->write_formula('A7', '{=SUM(A1:B1*A2:B2)}' ); See also the C method below. Note: Array formulas are not supported by Spreadsheet::WriteExcel. See the note about L. For more information about writing Excel formulas see L =head2 write_array_formula($first_row, $first_col, $last_row, $last_col, $formula, $format) Write an array formula to a cell range. In Excel an array formula is a formula that performs a calculation on a set of values. It can return a single value or a range of values. An array formula is indicated by a pair of braces around the formula: C<{=SUM(A1:B1*A2:B2)}>. If the array formula returns a single value then the C<$first_> and C<$last_> parameters should be the same: $worksheet->write_array_formula('A1:A1', '{=SUM(B1:C1*B2:C2)}'); It this case however it is easier to just use the C or C methods: # Same as above but more concise. $worksheet->write('A1', '{=SUM(B1:C1*B2:C2)}'); $worksheet->write_formula('A1', '{=SUM(B1:C1*B2:C2)}'); For array formulas that return a range of values you must specify the range that the return values will be written to: $worksheet->write_array_formula('A1:A3', '{=TREND(C1:C3,B1:B3)}'); $worksheet->write_array_formula(0, 0, 2, 0, '{=TREND(C1:C3,B1:B3)}'); Note: Array formulas are not supported by Spreadsheet::WriteExcel. =head2 store_formula($formula) This method isn't used by Spreadsheet::WriteExcelXML. It is only required by Spreadsheet::WriteExcel. =head2 repeat_formula($row, $col, $formula, $format, ($pattern => $replace, ...)) This method isn't used by Spreadsheet::WriteExcelXML. It is only required by Spreadsheet::WriteExcel. =head2 write_comment($row, $column, $string) B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. The C method is used to add a comment to a cell. A cell comment is indicated in Excel by a small red triangle in the upper right-hand corner of the cell. Moving the cursor over the red triangle will cause the comment to appear. The following example shows how to add a comment to a cell: $worksheet->write("C3", "Hello"); $worksheet->write_comment("C3", "This is a comment."); The cell comment can be up to 30,000 characters in length. No formatting of the text or the text box is possible with the Excel 5 version of this method. Note: the C method was previously supplied as an external example program. If you are currently using that method you will get a warning about subroutines being redefined: Subroutine write_comment redefined at ... line ... Subroutine _store_comment redefined at ... line ... You can safely delete the user defined C code from your old programs and use the module defined method instead. =head2 add_write_handler($re, $code_ref) This method is used to extend the Spreadsheet::WriteExcel write() method to handle user defined data. If you refer to the section on C above you will see that it acts as an alias for several more specific C methods. However, it doesn't always act in exactly the way that you would like it to. One solution is to filter the input data yourself and call the appropriate C method. Another approach is to use the C method to add your own automated behaviour to C. The C method take two arguments, C<$re>, a regular expression to match incoming data and C<$code_ref> a callback function to handle the matched data: $worksheet->add_write_handler(qr/^\d\d\d\d$/, \&my_write); (In the these examples the C operator is used to quote the regular expression strings, see L for more details). The method is use as follows. say you wished to write 7 digit ID numbers as a string so that any leading zeros were preserved*, you could do something like the following: $worksheet->add_write_handler(qr/^\d{7}$/, \&write_my_id); sub write_my_id { my $worksheet = shift; return $worksheet->write_string(@_); } * You could also use the C method for this. Then if you call C with an appropriate string it will be handled automatically: # Writes 0000000. It would normally be written as a number; 0. $worksheet->write('A1', '0000000'); The callback function will receive a reference to the calling worksheet and all of the other arguments that were passed to C. The callback will see an C<@_> argument list that looks like the following: $_[0] A ref to the calling worksheet. * $_[1] Zero based row number. $_[2] Zero based column number. $_[3] A number or string or token. $_[4] A format ref if any. $_[5] Any other argruments. ... * It is good style to shift this off the list so the @_ is the same as the argument list seen by write(). Your callback should C the return value of the C method that was called or C to indicate that you rejected the match and want C to continue as normal. So for example if you wished to apply the previous filter only to ID values that occur in the first column you could modify your callback function as follows: sub write_my_id { my $worksheet = shift; my $col = $_[1]; if ($col == 0) { return $worksheet->write_string(@_); } else { # Reject the match and return control to write() return undef; } } Now, you will get different behaviour for the first column and other columns: $worksheet->write('A1', '0000000'); # Writes 0000000 $worksheet->write('B1', '0000000'); # Writes 0 You may add more than one handler in which case they will be called in the order that they were added. Note, the C method is particularly suited for handling dates. See the C programs in the C directory for further examples. =head2 insert_bitmap($row, $col, $filename, $x, $y, $scale_x, $scale_y) Embedded images are not supported by Excel XML. See Spreadsheet::WriteExcel if you need this feature. =head2 get_name() The C method is used to retrieve the name of a worksheet. For example: foreach my $sheet ($workbook->sheets()) { print $sheet->get_name(); } =head2 activate() B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. The C method is used to specify which worksheet is initially visible in a multi-sheet workbook: $worksheet1 = $workbook->add_worksheet('To'); $worksheet2 = $workbook->add_worksheet('the'); $worksheet3 = $workbook->add_worksheet('wind'); $worksheet3->activate(); This is similar to the Excel VBA activate method. More than one worksheet can be selected via the C method, however only one worksheet can be active. The default value is the first worksheet. =head2 select() B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. The C method is used to indicate that a worksheet is selected in a multi-sheet workbook: $worksheet1->activate(); $worksheet2->select(); $worksheet3->select(); A selected worksheet has its tab highlighted. Selecting worksheets is a way of grouping them together so that, for example, several worksheets could be printed in one go. A worksheet that has been activated via the C method will also appear as selected. You probably won't need to use the C method very often. =head2 set_first_sheet() B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. The C method determines which worksheet is initially selected. However, if there are a large number of worksheets the selected worksheet may not appear on the screen. To avoid this you can select which is the leftmost visible worksheet using C: for (1..20) { $workbook->add_worksheet; } $worksheet21 = $workbook->add_worksheet(); $worksheet22 = $workbook->add_worksheet(); $worksheet21->set_first_sheet(); $worksheet22->activate(); This method is not required very often. The default value is the first worksheet. =head2 protect($password) The C method is used to protect a worksheet from modification: $worksheet->protect(); It can be turned off in Excel via the CProtection-EUnprotect Sheet> menu command. The C method also has the effect of enabling a cell's C and C properties if they have been set. A "locked" cell cannot be edited. A "hidden" cell will display the results of a formula but not the formula itself. In Excel a cell's locked property is on by default. # Set some format properties my $unlocked = $workbook->add_format(locked => 0); my $hidden = $workbook->add_format(hidden => 1); # Enable worksheet protection $worksheet->protect(); # This cell cannot be edited, it is locked by default $worksheet->write('A1', '=1+2'); # This cell can be edited $worksheet->write('A2', '=1+2', $unlocked); # The formula in this cell isn't visible $worksheet->write('A3', '=1+2', $hidden); See also the C and C format methods in L. You can optionally add a password to the worksheet protection: $worksheet->protect('drowssap'); Note, the worksheet level password in Excel provides very weak protection. It does not encrypt your data in any way and it is very easy to deactivate. Therefore, do not use the above method if you wish to protect sensitive data or calculations. However, before you get worried, Excel's own workbook level password protection does provide strong encryption in Excel 97+. For technical reasons this will never be supported by C. =head2 set_selection($first_row, $first_col, $last_row, $last_col) B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. This method can be used to specify which cell or cells are selected in a worksheet. The most common requirement is to select a single cell, in which case C<$last_row> and C<$last_col> can be omitted. The active cell within a selected range is determined by the order in which C<$first> and C<$last> are specified. It is also possible to specify a cell or a range using A1 notation. See the note about L. Examples: $worksheet1->set_selection(3, 3); # 1. Cell D4. $worksheet2->set_selection(3, 3, 6, 6); # 2. Cells D4 to G7. $worksheet3->set_selection(6, 6, 3, 3); # 3. Cells G7 to D4. $worksheet4->set_selection('D4'); # Same as 1. $worksheet5->set_selection('D4:G7'); # Same as 2. $worksheet6->set_selection('G7:D4'); # Same as 3. The default cell selections is (0, 0), 'A1'. =head2 set_row($row, $height, $format, $hidden) This method can be used to change the default properties of a row. All parameters apart from C<$row> are optional. The most common use for this method is to change the height of a row: $worksheet->set_row(0, 20); # Row 1 height set to 20 If you wish to set the format without changing the height you can pass C as the height parameter: $worksheet->set_row(0, undef, $format); The C<$format> parameter will be applied to any cells in the row that don't have a format. For example $worksheet->set_row(0, undef, $format1); # Set the format for row 1 $worksheet->write('A1', "Hello"); # Defaults to $format1 $worksheet->write('B1', "Hello", $format2); # Keeps $format2 If you wish to define a row format in this way you should call the method before any calls to C. Calling it afterwards will overwrite any format that was previously specified. The C<$hidden> parameter should be set to 1 if you wish to hide a row. This can be used, for example, to hide intermediary steps in a complicated calculation: $worksheet->set_row(0, 20, $format, 1); $worksheet->set_row(1, undef, undef, 1); B Spreadsheet::WriteExcel supports another parameter in relation to L. This feature is not supported by Excel XML. =head2 set_column($first_col, $last_col, $width, $format, $hidden) This method can be used to change the default properties of a single column or a range of columns. All parameters apart from C<$first_col> and C<$last_col> are optional. If C is applied to a single column the value of C<$first_col> and C<$last_col> should be the same. It is also possible to specify a column range using the form of A1 notation used for columns. See the note about L. Examples: $worksheet->set_column(0, 0, 20); # Column A width set to 20 $worksheet->set_column(1, 3, 30); # Columns B-D width set to 30 $worksheet->set_column('E:E', 20); # Column E width set to 20 $worksheet->set_column('F:H', 30); # Columns F-H width set to 30 The width corresponds to the column width value that is specified in Excel. It is approximately equal to the length of a string in the default font of Arial 10. It is possible to set "AutoFit" for a column in the ExcelXML file format, but it only applies to numbers and dates and not to strings. As usual the C<$format> parameter is optional, for additional information, see L. If you wish to set the format without changing the width you can pass C as the width parameter: $worksheet->set_column(0, 0, undef, $format); The C<$format> parameter will be applied to any cells in the column that don't have a format. For example $worksheet->set_column('A:A', undef, $format1); # Set format for col 1 $worksheet->write('A1', "Hello"); # Defaults to $format1 $worksheet->write('A2', "Hello", $format2); # Keeps $format2 A default row format takes precedence over a default column format $worksheet->set_row(0, undef, $format1); # Set format for row 1 $worksheet->set_column('A:A', undef, $format2); # Set format for col 1 $worksheet->write('A1', "Hello"); # Defaults to $format1 $worksheet->write('A2', "Hello"); # Defaults to $format2 The C<$hidden> parameter should be set to 1 if you wish to hide a column. This can be used, for example, to hide intermediary steps in a complicated calculation: $worksheet->set_column('D:D', 20, $format, 1); $worksheet->set_column('E:E', undef, undef, 1); B Spreadsheet::WriteExcel supports another parameter in relation to L. This feature is not supported by Excel XML. =head2 outline_settings($visible, $symbols_below, $symbols_right, $auto_style) B Outlines and Grouping is not supported by Excel XML. See Spreadsheet::WriteExcel if you need this feature. The C method is used to control the appearance of outlines in Excel. Outlines are described in L. The C<$visible> parameter is used to control whether or not outlines are visible. Setting this parameter to 0 will cause all outlines on the worksheet to be hidden. They can be unhidden in Excel by means of the "Show Outline Symbols" command button. The default setting is 1 for visible outlines. $worksheet->outline_settings(0); The C<$symbols_below> parameter is used to control whether the row outline symbol will appear above or below the outline level bar. The default setting is 1 for symbols to appear below the outline level bar. The C parameter is used to control whether the column outline symbol will appear to the left or the right of the outline level bar. The default setting is 1 for symbols to appear to the right of the outline level bar. The C<$auto_style> parameter is used to control whether the automatic outline generator in Excel uses automatic styles when creating an outline. This has no effect on a file generated by C but it does have an effect on how the worksheet behaves after it is created. The default setting is 0 for "Automatic Styles" to be turned off. The default settings for all of these parameters correspond to Excel's default parameters. The worksheet parameters controlled by C are rarely used. =head2 freeze_panes($row, $col, $top_row, $left_col) B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. This method can be used to divide a worksheet into horizontal or vertical regions known as panes and to also "freeze" these panes so that the splitter bars are not visible. This is the same as the CFreeze Panes> menu command in Excel The parameters C<$row> and C<$col> are used to specify the location of the split. It should be noted that the split is specified at the top or left of a cell and that the method uses zero based indexing. Therefore to freeze the first row of a worksheet it is necessary to specify the split at row 2 (which is 1 as the zero-based index). This might lead you to think that you are using a 1 based index but this is not the case. You can set one of the C<$row> and C<$col> parameters as zero if you do not want either a vertical or horizontal split. Examples: $worksheet->freeze_panes(1, 0); # Freeze the first row $worksheet->freeze_panes('A2'); # Same using A1 notation $worksheet->freeze_panes(0, 1); # Freeze the first column $worksheet->freeze_panes('B1'); # Same using A1 notation $worksheet->freeze_panes(1, 2); # Freeze first row and first 2 columns $worksheet->freeze_panes('C2'); # Same using A1 notation The parameters C<$top_row> and C<$left_col> are optional. They are used to specify the top-most or left-most visible row or column in the scrolling region of the panes. For example to freeze the first row and to have the scrolling region begin at row twenty: $worksheet->freeze_panes(1, 0, 20, 0); You cannot use A1 notation for the C<$top_row> and C<$left_col> parameters. See also the C program in the C directory of the distribution. =head2 thaw_panes($y, $x, $top_row, $left_col) B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. This method can be used to divide a worksheet into horizontal or vertical regions known as panes. This method is different from the C method in that the splits between the panes will be visible to the user and each pane will have its own scroll bars. The parameters C<$y> and C<$x> are used to specify the vertical and horizontal position of the split. The units for C<$y> and C<$x> are the same as those used by Excel to specify row height and column width. However, the vertical and horizontal units are different from each other. Therefore you must specify the C<$y> and C<$x> parameters in terms of the row heights and column widths that you have set or the default values which are C<12.75> for a row and C<8.43> for a column. You can set one of the C<$y> and C<$x> parameters as zero if you do not want either a vertical or horizontal split. The parameters C<$top_row> and C<$left_col> are optional. They are used to specify the top-most or left-most visible row or column in the bottom-right pane. Example: $worksheet->thaw_panes(12.75, 0, 1, 0); # First row $worksheet->thaw_panes(0, 8.43, 0, 1); # First column $worksheet->thaw_panes(12.75, 8.43, 1, 1); # First row and column You cannot use A1 notation with this method. See also the C method and the C program in the C directory of the distribution. =head2 merge_range($first_row, $first_col, $last_row, $last_col, $token, $format) Merging cells is generally achieved by setting the C property of a Format object, see L. However, this only allows simple Excel5 style horizontal merging which Excel refers to as "center across selection". The C method allows you to do Excel97+ style formatting where the cells can contain other types of alignment in addition to the merging: my $format = $workbook->add_format( border => 6, valign => 'vcenter', align => 'center', ); $worksheet->merge_range('B3:D4', 'Vertical and horizontal', $format); C writes its $token argument using the worksheet C method. Therefore it will handle numbers, strings, formulas or urls as required. Setting the C property of the format isn't required when you are using C. In fact using it will exclude the use of any other horizontal alignment option. The full possibilities of this method are shown in the C, C and C programs in the C directory of the distribution. =head2 set_zoom($scale) B This method is not yet supported by Spreadsheet::WriteExcelXML. See Spreadsheet::WriteExcel if you need this feature. Set the worksheet zoom factor in the range C<10 E= $scale E= 400>: $worksheet1->set_zoom(50); $worksheet2->set_zoom(75); $worksheet3->set_zoom(300); $worksheet4->set_zoom(400); The default zoom factor is 100. You cannot zoom to "Selection" because it is calculated by Excel at run-time. Note, C does not affect the scale of the printed page. For that you should use C. =head2 autofilter($first_row, $first_col, $last_row, $last_col) This method allows an autofilter to be added to a worksheet. An autofilter is a way of adding drop down lists to the headers of a 2D range of worksheet data. This is turn allow users to filter the data based on simple criteria so that some data is highlighted and some is hidden. To add an autofilter to a worksheet: $worksheet->autofilter(0, 0, 10, 3); $worksheet->autofilter('A1:D11'); # Same as above in A1 notation. Filter conditions can be applied using the C method. See the C program in the examples directory of the distro for a more detailed example. =head2 filter_column($column, $expression) The C method can be used to filter columns in a autofilter range based on simple conditions. The conditions for the filter are specified using simple expressions: $worksheet->filter_column('A', 'x > 2000 and x < 5000'); The C<$column> parameter can either be a zero indexed column number or a string column name. The following operators are available: Operator Synonyms == = eq =~ != <> ne != > < >= <= and && or || The operator synonyms are just syntactic sugar to make you more comfortable using the expressions. It is important to remember that the expressions will be interpreted by Excel and not by perl. An expression can comprise a single statement or two statements separated by the C and C operators. For example: 'x < 2000' 'x > 2000' 'x == 2000' 'x > 2000 and x < 5000' 'x == 2000 or x == 5000' Excel also allows some simple string matching operations: 'x =~ b*' # begins with b 'x !~ b*' # doesn't begin with b 'x =~ *b' # ends with b 'x !~ *b' # doesn't end with b 'x =~ *b*' # contains b 'x !~ *b*' # doesn't contains b You can also use C<*> to match any character or number and C to match any single character or number. No other regular expression quantifier is supported by Excel's filters. (Remember again that the expression is being interpreted by Excel and not by perl). The placeholder variable C in the above examples can be replaced by any simple string. The actual placeholder name is ignored internally so the following are all equivalent: 'x < 2000' 'col < 2000' 'Price < 2000' If you have problems with an expression, use Excel to create the condition that you want, save the file in XML format and examine the output. Also, note that a filter condition can only be applied to a column in a range specified by the C Worksheet method. See the C program in the examples directory of the distro for a more detailed example. =head1 PAGE SET-UP METHODS Page set-up methods affect the way that a worksheet looks when it is printed. They control features such as page headers and footers and margins. These methods are really just standard worksheet methods. They are documented here in a separate section for the sake of clarity. The following methods are available for page set-up: set_landscape() set_portrait() set_paper() center_horizontally() center_vertically() set_margins() set_header() set_footer() repeat_rows() repeat_columns() hide_gridlines() print_row_col_headers() print_area() fit_to_pages() set_print_scale() set_h_pagebreaks() set_v_pagebreaks() A common requirement when working with Spreadsheet::WriteExcelXML is to apply the same page set-up features to all of the worksheets in a workbook. To do this you can use the C method of the C class to access the array of worksheets in a workbook: foreach $worksheet ($workbook->sheets()) { $worksheet->set_landscape(); } =head2 set_landscape() This method is used to set the orientation of a worksheet's printed page to landscape: $worksheet->set_landscape(); # Landscape mode =head2 set_portrait() This method is used to set the orientation of a worksheet's printed page to portrait. The default worksheet orientation is portrait, so you won't generally need to call this method. $worksheet->set_portrait(); # Portrait mode =head2 set_paper($index) This method is used to set the paper format for the printed output of a worksheet. The following paper styles are available: Index Paper format Paper size ===== ============ ========== 0 Printer default - 1 Letter 8 1/2 x 11 in 2 Letter Small 8 1/2 x 11 in 3 Tabloid 11 x 17 in 4 Ledger 17 x 11 in 5 Legal 8 1/2 x 14 in 6 Statement 5 1/2 x 8 1/2 in 7 Executive 7 1/4 x 10 1/2 in 8 A3 297 x 420 mm 9 A4 210 x 297 mm 10 A4 Small 210 x 297 mm 11 A5 148 x 210 mm 12 B4 250 x 354 mm 13 B5 182 x 257 mm 14 Folio 8 1/2 x 13 in 15 Quarto 215 x 275 mm 16 - 10x14 in 17 - 11x17 in 18 Note 8 1/2 x 11 in 19 Envelope 9 3 7/8 x 8 7/8 20 Envelope 10 4 1/8 x 9 1/2 21 Envelope 11 4 1/2 x 10 3/8 22 Envelope 12 4 3/4 x 11 23 Envelope 14 5 x 11 1/2 24 C size sheet - 25 D size sheet - 26 E size sheet - 27 Envelope DL 110 x 220 mm 28 Envelope C3 324 x 458 mm 29 Envelope C4 229 x 324 mm 30 Envelope C5 162 x 229 mm 31 Envelope C6 114 x 162 mm 32 Envelope C65 114 x 229 mm 33 Envelope B4 250 x 353 mm 34 Envelope B5 176 x 250 mm 35 Envelope B6 176 x 125 mm 36 Envelope 110 x 230 mm 37 Monarch 3.875 x 7.5 in 38 Envelope 3 5/8 x 6 1/2 in 39 Fanfold 14 7/8 x 11 in 40 German Std Fanfold 8 1/2 x 12 in 41 German Legal Fanfold 8 1/2 x 13 in Note, it is likely that not all of these paper types will be available to the end user since it will depend on the paper formats that the user's printer supports. Therefore, it is best to stick to standard paper types. $worksheet->set_paper(1); # US Letter $worksheet->set_paper(9); # A4 If you do not specify a paper type the worksheet will print using the printer's default paper. =head2 center_horizontally() Center the worksheet data horizontally between the margins on the printed page: $worksheet->center_horizontally(); =head2 center_vertically() Center the worksheet data vertically between the margins on the printed page: $worksheet->center_vertically(); =head2 set_margins($inches) There are several methods available for setting the worksheet margins on the printed page: set_margins() # Set all margins to the same value set_margins_LR() # Set left and right margins to the same value set_margins_TB() # Set top and bottom margins to the same value set_margin_left(); # Set left margin set_margin_right(); # Set right margin set_margin_top(); # Set top margin set_margin_bottom(); # Set bottom margin All of these methods take a distance in inches as a parameter. Note: 1 inch = 25.4mm. ;-) The default left and right margin is 0.75 inch. The default top and bottom margin is 1.00 inch. =head2 set_header($string, $margin) Headers and footers are generated using a C<$string> which is a combination of plain text and control characters. The C<$margin> parameter is optional. The available control character are: Control Category Description ======= ======== =========== &L Justification Left &C Center &R Right &P Information Page number &N Total number of pages &D Date &T Time &F File name &A Worksheet name &fontsize Font Font size &"font,style" Font name and style &U Single underline &E Double underline &S Strikethrough &X Superscript &Y Subscript && Miscellaneous Literal ampersand & Text in headers and footers can be justified (aligned) to the left, center and right by prefixing the text with the control characters C<&L>, C<&C> and C<&R>. For example (with ASCII art representation of the results): $worksheet->set_header('&LHello'); --------------------------------------------------------------- | | | Hello | | | $worksheet->set_header('&CHello'); --------------------------------------------------------------- | | | Hello | | | $worksheet->set_header('&RHello'); --------------------------------------------------------------- | | | Hello | | | For simple text, if you do not specify any justification the text will be centred. However, you must prefix the text with C<&C> if you specify a font name or any other formatting: $worksheet->set_header('Hello'); --------------------------------------------------------------- | | | Hello | | | You can have text in each of the justification regions: $worksheet->set_header('&LCiao&CBello&RCielo'); --------------------------------------------------------------- | | | Ciao Bello Cielo | | | The information control characters act as variables that Excel will update as the workbook or worksheet changes. Times and dates are in the users default format: $worksheet->set_header('&CPage &P of &N'); --------------------------------------------------------------- | | | Page 1 of 6 | | | $worksheet->set_header('&CUpdated at &T'); --------------------------------------------------------------- | | | Updated at 12:30 PM | | | You can specify the font size of a section of the text by prefixing it with the control character C<&n> where C is the font size: $worksheet1->set_header('&C&30Hello Big' ); $worksheet2->set_header('&C&10Hello Small'); You can specify the font of a section of the text by prefixing it with the control sequence C<&"font,style"> where C is a font name such as "Courier New" or "Times New Roman" and C