in reply to Re: Missing first row with formula
in thread Missing first row with formula
It's zero-based. From the documentation:
$worksheet->write(0, 0, 'Hi Excel!');
and
for my $row ( 0 .. 99 ) { $worksheet->repeat_formula( $row, 1, $formula, $format, 'A1', 'A' +. ( $row + 1 ) ); }
|
|---|