mike5091231 has asked for the wisdom of the Perl Monks concerning the following question:
(sorry for the repost, ahd to make an edit) (not sure if my original got posted)# get already active Excel application or open new my $Excel = Win32::OLE->GetActiveObject('Excel.Application') || Win32::OLE->new('Excel.Application', 'Quit'); # open Excel file my $Book = $Excel->Workbooks->Open("C:\\tester.xls"); my $Sheet = $Book->Worksheets(1); $Sheet->Cells(22,31)->{'Value'} = $open;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Changing the background color of an excel cell
by jonix (Friar) on Oct 28, 2005 at 14:43 UTC | |
|
Re: Changing the background color of an excel cell
by muntfish (Chaplain) on Oct 28, 2005 at 14:43 UTC | |
by Crazy me (Initiate) on Jun 26, 2014 at 10:00 UTC |