dr.jekyllandme has asked for the wisdom of the Perl Monks concerning the following question:
I am new to Excel::Writer::XLSX and I am not even sure If I should be using write_date_time. If anyone can enlighten me, it would be greatly appreciated. Thanks.my $workbook = Excel::Writer::XLSX->new( 'build_results.xlsx' ); my $worksheet = $workbook->add_worksheet(); my $format = $workbook->add_format( num_format => '[hh]:mm:ss' ); $worksheet->write_date_time( "A$col", '12:20:12', $format ); # i n +eed this to be considered 12 hours 20 mins and 12 secs.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Time duration using Excel::Writer::XLSX
by Anonymous Monk on Dec 06, 2012 at 01:08 UTC | |
|
Re: Time duration using Excel::Writer::XLSX
by rpnoble419 (Pilgrim) on Dec 07, 2012 at 01:09 UTC |