Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

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":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-03-28 14:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found