in reply to Create a excel sheet with formula ???
If I understood your question correctly, I am answering your second question.
Also try to use strict and warnings.my $first = 'C2'; my $second = 'C9'; for my $r (3..4) { $worksheet->write("E$r", "=COUNTIF($first:$second, \"pass\")"); $r++; $worksheet->write("E$r", "=COUNTIF($first:$second, \"FAIL\")"); + }
Prasad
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Create a excel sheet with formula ???
by samirpatry (Acolyte) on Nov 08, 2006 at 07:05 UTC | |
by monarch (Priest) on Nov 08, 2006 at 08:28 UTC |