in reply to Adding Borders to Cells using Excel::Writer::XLSX
It works for me. Are you specifying the format when you write to the spreadsheet?
my $fmt_hdr = $workbook->add_format( border=>1, color=>'blue' ); my $fmt_cell = $workbook->add_format( border=>1, color=>'black' ); . . . $worksheet->write($row, $col, "HDR", $fmt_hdr); $worksheet->write($row+1, $col, "value", $fmt_cell);
...roboticus
When your only tool is a hammer, all problems look like your thumb.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Adding Borders to Cells using Excel::Writer::XLSX
by GuiPerl (Acolyte) on Jul 07, 2014 at 17:14 UTC | |
by poj (Abbot) on Jul 07, 2014 at 17:23 UTC |