Hi,
I am trying to write a column on duration( hh:mm:ss ) to an excel file. My only problem is figuring out what format I should use. I am using the Excel::Writer::XLSX module. When I did a quick web search, I found that the correct way to define a duration is to use []( http://www.myonlinetraininghub.com/calculating-time-in-excel ).
This works correctly when I do this in excel. But I need to use Perl to generate my spreadsheet because I have lots of data. This is a snippet of my code:
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.
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.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.