anbutechie has asked for the wisdom of the Perl Monks concerning the following question:
How can i set bold to perticular cell say cell(2,3)?use Win32::OLE; $Excel = Win32::OLE->new("Excel.Application") || die "Could not start +Excel.Application\n"; $Excel->{visible} = 1; # get a new workbook $book =$Excel->Workbooks->Add; $sheet = $book->Worksheets(1); $sheet->Cells(1,2)->{Value} ="test";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to set bold /underline to perticular cell in excel?
by VinsWorldcom (Prior) on Mar 18, 2009 at 14:48 UTC | |
|
Re: How to set bold /underline to perticular cell in excel?
by imrags (Monk) on Mar 19, 2009 at 06:46 UTC |