Spreadsheet::WriteExcelXML

Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format.
Download

Spreadsheet::WriteExcelXML Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • John McNamara
  • Publisher web site:
  • http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel-2.18/lib/Spreadsheet/WriteExcel/Utility.pm

Spreadsheet::WriteExcelXML Tags


Spreadsheet::WriteExcelXML Description

Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format. Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format.SYNOPSISTo 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)');The Spreadsheet::WriteExcelXML 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.Spreadsheet::WriteExcelXML uses the same interface as Spreadsheet::WriteExcel.This module cannot, as yet, be used to write to an existing Excel XML file. Requirements: · Perl


Spreadsheet::WriteExcelXML Related Software