in reply to Re: Create a excel sheet with formula ???
in thread Create a excel sheet with formula ???
my @array= ($slno, $testid, $status); $array_ref = \@array; $worksheet->write_row($row, $col, $array_ref);
sub Entry(@) { my @data= @_; $slno=$ddd[0]; $testid=$ddd[1]; $status=$ddd[2]; my @array= ($slno, $testid, $status); $array_ref = \@array; $worksheet->write_row($row, $col, $array_ref); }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Create a excel sheet with formula ???
by monarch (Priest) on Nov 08, 2006 at 08:28 UTC |