skywalker has asked for the wisdom of the Perl Monks concerning the following question:
rather than$format = $workbook->add_format(border => 1); $worksheet->write('A1:D3',$format);
Thanks skywalker$format = $workbook->add_format(border => 1); $worksheet->write('A1','undef',$format); $worksheet->write('B1','undef',$format); $worksheet->write('C1','undef',$format); ect
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: spreadsheet write excel border creation
by kennethk (Abbot) on Mar 30, 2009 at 16:20 UTC | |
by skywalker (Beadle) on Mar 30, 2009 at 16:46 UTC |