gengtian has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use strict; use Excel::Writer::XLSX; my $workbook = Excel::Writer::XLSX->new( 'simple.xlsx' ); my $worksheet = $workbook->add_worksheet(); $worksheet->write( 0, 0, 'Hi Excel!' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: perl excel writer xlsx
by stevieb (Canon) on Sep 24, 2016 at 00:16 UTC | |
by gengtian (Initiate) on Sep 24, 2016 at 16:41 UTC | |
|
Re: perl excel writer xlsx
by NetWallah (Canon) on Sep 24, 2016 at 00:21 UTC | |
by gengtian (Initiate) on Sep 24, 2016 at 16:49 UTC |