- or download this
open(INPUT,$outFile) or die "Can't open file";
- or download this
my $workbook = Spreadsheet::WriteExcel->new($outFile);
my $worksheet = $workbook->add_worksheet();
- or download this
$worksheet->write(0,$colCount,$el,$gFmtBold) ;
- or download this
$worksheet->write($rowCount, $colCount, $el, $gFmtBold);
- or download this
$worksheet->set_column(0,$colCount,40);
- or download this
$worksheet->set_column($colCount, $colCount, 40);