I am trying to combine daily reports into one monthly report.
my $workbook= Spreadsheet::WriteExcel->new("Integrated_source_list_$today.xls");
my $resource = Spreadsheet:arseExcel::Workbook->Parse('resources.xls');
The way I have my program now it will read from one spreadsheet and write to another.
What I need to be able to do is read in the file name to add and append the cumulative spreadsheet with the contents of this file. Any program examples would be very helpful as I am not proficient in perl.
my $workbook= Spreadsheet::WriteExcel->new("Integrated_source_list_$today.xls");
my $resource = Spreadsheet:arseExcel::Workbook->Parse('resources.xls');
The way I have my program now it will read from one spreadsheet and write to another.
What I need to be able to do is read in the file name to add and append the cumulative spreadsheet with the contents of this file. Any program examples would be very helpful as I am not proficient in perl.