perly_newbie has asked for the wisdom of the Perl Monks concerning the following question:
"use strict; use Spreadsheet::WriteExcel; # Create a new Excel workbook called perl.xls my $workbook = Spreadsheet::WriteExcel->new("XYZ.xls"); system("C:/Perl_Scripts/XYZ.xls"); # Add some worksheets #my $sheet1 = $workbook->add_worksheet(); my $sheet1 = $workbook->add_worksheet("Summary"); ............................................. +........................................... #this loops for 6-7 hours to collect data $sheet2->write($i,0,$freqbk);} $sheet2->write($i,$f+1,$pwr);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Open Excel while writing & Save file
by ikegami (Patriarch) on Jan 03, 2010 at 03:06 UTC | |
|
Re: Open Excel while writing & Save file
by bobr (Monk) on Jan 03, 2010 at 08:52 UTC | |
by afoken (Chancellor) on Jan 03, 2010 at 09:21 UTC | |
|
Re: Open Excel while writing & Save file
by Ollie Jones (Novice) on Jan 04, 2010 at 03:07 UTC |