- or download this
$output = [
[ [0],[0],[0] ],
...
my $Sheet = $Book->Worksheets("$i");
$Sheet->Range("A1:C3")->{'Value'} = $$output[$i];
}
- or download this
open (FILEIN,"$filein") or die "Open $filein failed: $!";
while (<FILEIN>) {
...
$Sheet->Range("$begcol$begrow:$endcol$endrow")->{'Value'} = $output;
- or download this
push @$output, [@data];
- or download this
push $$day_output[$data[1]], [@data];