AtlasFlame has asked for the wisdom of the Perl Monks concerning the following question:
How to write to existing worksheet?
use Excel::Writer::XLSX; my $workbook = Excel::Writer::XLSX->new( 'sample.xlsx' ); $worksheet = $workbook->add_worksheet("new"); $worksheet->write(2, 2, 'Name'); $worksheet = $workbook->add_worksheet("old"); $worksheet->write(2, 2, 'Name'); $worksheet = $workbook->add_worksheet("latest"); $worksheet->write(2, 2, 'Name');
How to open worksheet "new" for write again?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Excel how to open existing worksheet
by Utilitarian (Vicar) on Jan 27, 2015 at 12:21 UTC | |
Re: Excel how to open existing worksheet
by poj (Abbot) on Jan 27, 2015 at 14:49 UTC | |
Re: Excel how to open existing worksheet
by bibliophile (Prior) on Jan 27, 2015 at 14:32 UTC | |
Re: Excel how to open existing worksheet
by jandrew (Chaplain) on Jan 27, 2015 at 22:27 UTC | |
Re: Excel how to open existing worksheet -- create and append to an XLS file
by Discipulus (Abbot) on Feb 26, 2016 at 12:24 UTC |
Back to
Seekers of Perl Wisdom