vxp has asked for the wisdom of the Perl Monks concerning the following question:
is what i'm trying to do. (the above doesnt work, but if it'd work, thatd be EXACTLY what I need) And the second question is.. As a temp fix for the above problem, i tried doing it the "normal" way:$row = (localtime)[3] - 1; $worksheet->write_formula($row, 6, '=SUM(C$row:E$row)' );
However, that also doesnt work. It runs fine, it just produces a zero in the cell, even though C20, D20, and E20 have numeric values in them (G20 is empty, however). Help would be greatly appreciated.$row = (localtime)[3] - 1; $worksheet->write_formula($row, 6, '=SUM(C20:E20)' );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Couple of questions about Spreadsheet::WriteExcel
by Mr. Muskrat (Canon) on Aug 20, 2002 at 19:17 UTC | |
|
Re: Couple of questions about Spreadsheet::WriteExcel
by RMGir (Prior) on Aug 20, 2002 at 18:21 UTC | |
by vxp (Pilgrim) on Aug 20, 2002 at 18:35 UTC | |
by RMGir (Prior) on Aug 20, 2002 at 18:52 UTC |