hagmgoe has asked for the wisdom of the Perl Monks concerning the following question:
It would be nice if somebody is able help mefor my $row (@$data) { $qty++; if ($i > $limit) { $i = $start_row; $w++; $worksheet = $workbook->add_worksheet("$base_name - $w"); $worksheet->write('A1', $colums,$bold); } $worksheet->write($i++, 0, $row); } autofit_columns($worksheet); warn "Convereted $qty rows."; return $worksheet;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: csv 2 excel
by roboticus (Chancellor) on Jul 03, 2010 at 16:21 UTC | |
by hagmgoe (Initiate) on Jul 04, 2010 at 09:30 UTC |