in reply to Creating Excel file using Perl
Results in:my $format = $workbook->add_format(num_format => 'mm/dd/yy'); $worksheet->write_date_time(0, 1, '2004-05-13', $format); # wrong $worksheet->write_date_time(1, 1, '2004-05-13T', $format); # right
Row, Col = (0, 1) Value = 2004-05-13 Row, Col = (1, 1) Value = 05/13/04
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Creating Excel file using Perl
by Rahul Saxena (Initiate) on Oct 21, 2015 at 04:24 UTC | |
by locked_user sundialsvc4 (Abbot) on Oct 21, 2015 at 15:07 UTC |