Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Excel Formatting

by CountOrlok (Friar)
on Apr 22, 2013 at 19:10 UTC ( [id://1029955]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $trans_format = $workbook->add_format();
    $trans_format->set_num_format('$0.00');
    #...
    $worksheet->set_column('I:I', undef, $trans_format);
    
  2. or download this
    my $row = 2;
    while (<FH>) {
    ...
    }    
    $worksheet->write_formula('I1', '=SUM (I3:I262)');
    $worksheet->set_column('I:I', undef, $trans_format);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1029955]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-23 15:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found