github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

jmcnamara / spreadsheet-writeexcel

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 3
    • 2
  • Source
  • Commits
  • Network (2)
  • Issues (0)
  • Downloads (11)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (1)
    • master ✓
  • Tags (11)
    • CPAN_2.37
    • CPAN_2.36
    • CPAN_2.35
    • CPAN_2.34
    • CPAN_2.33
    • CPAN_2.32
    • CPAN_2.31
    • CPAN_2.30
    • CPAN_2.29
    • CPAN_2.26
    • ANDREAS02
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Perl module to write Excel binary files — Read more

  cancel

http://search.cpan.org/~jmcnamara/Spreadsheet-WriteExcel/

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

Prep for release 2.37. 
jmcnamara (author)
Tue Feb 02 16:03:45 -0800 2010
commit  06ff7a5736d1a45c2d45df66ba6a56449b7d3c31
tree    d70ffc3508912034a0cbf2cc3c75dfb2c2ad1119
parent  f834d3975853ff003d3a868d6900a05d4447fbfa
spreadsheet-writeexcel /
name age
history
message
file Changes Tue Feb 02 16:03:45 -0800 2010 Prep for release 2.37. [jmcnamara]
file INSTALL Sun Nov 29 00:23:47 -0800 2009 Prep for release 2.30. [jmcnamara]
file MANIFEST Tue Feb 02 16:03:45 -0800 2010 Prep for release 2.37. [jmcnamara]
file META.yml Tue Feb 02 16:03:45 -0800 2010 Prep for release 2.37. [jmcnamara]
file Makefile.PL Fri Jan 01 06:51:10 -0800 2010 Fix for non-numeric version comparison with som... [jmcnamara]
file README Sun Nov 29 00:23:47 -0800 2009 Prep for release 2.30. [jmcnamara]
directory bin/ Fri Oct 05 19:20:00 -0700 2007 2.20 October 6 2007 - Major + Added autof... [jmcnamara]
directory docs/ Tue Feb 02 16:03:45 -0800 2010 Prep for release 2.37. [jmcnamara]
directory examples/ Sun Jan 24 17:44:47 -0800 2010 Fixed issue where set_properties() didn't work ... [jmcnamara]
directory external_charts/ Sun Jan 03 12:09:51 -0800 2010 Updated method names in example. [jmcnamara]
directory lib/ Tue Feb 02 16:03:45 -0800 2010 Prep for release 2.37. [jmcnamara]
directory t/ Tue Feb 02 16:03:45 -0800 2010 Prep for release 2.37. [jmcnamara]
README
======================================================================
NAME

    Spreadsheet::WriteExcel - Write formatted text and numbers to a
    cross-platform Excel binary file.

======================================================================
DESCRIPTION

    The Spreadsheet::WriteExcel module can be used to create a cross-
    platform Excel binary file. Multiple worksheets can be added to a
    workbook and formatting can be applied to cells. Text, numbers,
    formulas, hyperlinks and images can be written to the cells.

    TThe Excel file produced by this module is compatible with 97,
    2000, 2002 and 2003.

    The module will work on the majority of Windows, UNIX and
    Macintosh platforms. Generated files are also compatible with the
    spreadsheet applications Gnumeric and OpenOffice.org.

    This module cannot be used to read an Excel file. See
    Spreadsheet::ParseExcel or look at the main documentation for some
    suggestions. This module cannot be uses to write to an existing
    Excel file.

======================================================================
SYNOPSIS

    To write a string, a formatted string, a number and a formula to
    the first worksheet in an Excel workbook called perl.xls:

        use Spreadsheet::WriteExcel;

        # Create a new Excel workbook
        my $workbook = Spreadsheet::WriteExcel->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.
        $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)');

======================================================================
REQUIREMENTS

    This module requires Perl 5.005 (or later), Parse::RecDescent
    and File::Temp:

    http://search.cpan.org/search?dist=Parse-RecDescent/
    http://search.cpan.org/search?dist=File-Temp/

======================================================================
INSTALLATION

    See the INSTALL file for details.


======================================================================
AUTHOR

    John McNamara (jmcnamara@cpan.org)

Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server