in reply to Re^2: Trying to modify multisheets using Spreadsheet::ParseExcel::SaveParser
in thread Trying to modify multisheets using Spreadsheet::ParseExcel::SaveParser

You initialize

my $row_in = 2; my $col_in = 0;
but then use
$sheet->AddCell( $row, $col, $value );
I suggest you uncomment these and fix the errors/warnings
#use strict; #use warnings;
poj