Help for this page

Select Code to Download


  1. or download this
    use Spreadsheet::Read;
    my %pointData{D.xls} = ReadData(fileD.xls)
    
  2. or download this
    use warnings;
    use strict;
    use Spreadsheet::Read;
    
    my %pointData;
    $pointData{"D.xls"} = ReadData("fileD.xls"); # Updated, added quotes.