Notes:#!/usr/bin/perl use strict; use Spreadsheet::ParseExcel; use Spreadsheet::WriteExcel; my $parser = Spreadsheet::ParseExcel->new(); #Creating Object to Read +Worksheet my $parse_workbook = $parser->parse('Infile.xls'); my $write_workbook = new Spreadsheet::WriteExcel('Resultfile.xls'); my $write_worksheet = $write_workbook->add_worksheet('Sheet1'); if ( !defined $parse_workbook) { die $parser->error(), ".\n"; } for my $parse_worksheet ( $parse_workbook->worksheets() ) { my ( $row_min, $row_max ) = $parse_worksheet->row_range(); my ( $col_min, $col_max ) = $parse_worksheet->col_range(); for my $row ( $row_min .. $row_max ) { for my $col ( $col_min .. $col_max ) { my $cell = $parse_worksheet->get_cell( $row, $col ); next unless $cell; my $cell_value = $cell->value(); my $cell_format = $cell->get_format(); $write_worksheet->write($row, $col, $cell_value); } } }
1. I just want to merge 4 different xls files into a single file with 4 sheets. 2. I want the same format which comes with input file to be available in the result file which I'm sending to my end user(like first files format should be available in Sheet1 and second files input should be available in Sheet2 and so on). 3.I have to assign Names to all 4 Sheets. 4. Sheet Name has Special Character(/)(ie. From/To) and I want to assign the same to the Sheet Name
In reply to Read multple .xls files and Write/Merge into 1 file with multiple Sheets by bheeshmaraja
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |