Help for this page

Select Code to Download


  1. or download this
    ...
    my $Book  = $Excel->Workbooks->Open($excelfile);
    my $Sheet = $Book->Worksheets("Sheet1");
    ...
    
  2. or download this
    ...
    my $Book  = $Excel->Workbooks->Open($excelfile);
    sleep(1);                                            # give Excel time
    + to open the file
    my $Sheet = $Book->Worksheets("Sheet1");
    ...