Hi I used below code to merger different .xlsx in on excel as separate sheets and trying to put the data in worksheets to one work sheet but I am able to write only one sheet data other sheets data I am able to read but not able write in Final.xls

use Spreadsheet::XLSX; use Excel::Writer::XLSX; use Spreadsheet::WriteExcel; use Spreadsheet::BasicRead; (@file_list) = glob "*xlsx"; my $workbook = Excel::Writer::XLSX->new( 'Target.xlsx' ); foreach my $setoffiles (@file_list){ my $excel = Spreadsheet::XLSX -> new ("$setoffiles"); $worksheet = $workbook->add_worksheet(); foreach my $sheet (@{$excel -> {Worksheet}}) { $sheet -> {MaxRow} ||= $sheet -> {MinRow}; $sheet -> {MaxCol} ||= $sheet -> {MinCol}; foreach my $row ($sheet -> {MinRow} .. $sheet -> {MaxRow}) { foreach my $col ($sheet -> {MinCol} .. $sheet -> {MaxCol}) { my $cell = $sheet -> {Cells} [$row] [$col] ; if($cell){ $worksheet->write( $row, $col, $cell -> {Val}); } } } } } $workbook->close() or die "Error closing file: $!"; my $tlfile= "Target.xlsx"; my $WorkBook1 = Spreadsheet::WriteExcel->new('Final.xls'); my $Sheet1 = $WorkBook1->add_worksheet(); my $TL = new Spreadsheet::BasicRead($tlfile) || die "Could not open '$ ++tlfile': $!"; do { $TL->setRow(0); my $firstrow = $TL->getFirstRow(); $Sheet1->write_row(0, 0, $firstrow); while (my $nextrow = $TL->getNextRow()) { my $row = $TL->getRowNumber(); print "$row\n"; $Sheet1->write($row, 0, $nextrow); } }while ($TL->getNextSheet()); $WorkBook1 ->close() or die "Error closing file: $!";

Please help


In reply to Merging worksheets in .xls in one Excel sheet by machirajun

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.