in reply to How can I access the values of an "array" extracted using Range

Code from the Activeperl example:
my $array = $Sheet->Range("A8:B9")->{'Value'}; # get the conten +ts foreach my $ref_array (@$array) { # loop through t +he array # referenced by +$array foreach my $scalar (@$ref_array) { print "$scalar\t"; } print "\n"; }

            “PHP is a minor evil perpetrated and created by incompetent amateurs, whereas Perl is a great and insidious evil perpetrated by skilled but perverted professionals.”
        ― Jon Ribbens

  • Comment on Re: How can I access the values of an "array" extracted using Range
  • Download Code