I am using Perl 5.1.8 and Win32::OLE 0.1101 and having problems with the following:
Trying to read the formatting style of a particular cell:
where
is a reference to my current worksheet.
The
variable contains "Percent", but when I open Excel directly and look at the cell format, it is "Number", and the cell value is displayed as "209".
Could this be a version problem?
Thanks in advance!
Trying to read the formatting style of a particular cell:
Code:
$format = $Sheet->Cells(1,2)->Style->{'Name'};
Code:
$Sheet
The
Code:
$format
Could this be a version problem?
Thanks in advance!