- or download this
my $Book = $Excel->Workbooks->Open("Reten_template.xls") || die "can't
+ open file";
- or download this
for (1..$Book->Worksheets->Count) {
print "$_: <", $Book->Worksheets($_)->Name, ">\n";
}
- or download this
# open Excel file
use File::Spec;
my $file = File::Spec->rel2abs("Reten_template.xls");
my $Book = $Excel->Workbooks->Open($file) or die "can't open $file: $!
+\n";
- or download this
my $Sheet = $Book->Worksheets('JUN05');