Hej Torsten,
kurzer Blick unter http://search.cpan.org/doc/KWITKNR/Spreadsheet-ParseExcel-0.25/ParseExcel.pm ins Beispiel:
$oWkC = $oWkS->{Cells}[$iR][$iC];
print "( $iR , $iC ) =>", $oWkC->Value, "\n" if($oWkC); # Formatted Value
print "( $iR , $iC ) =>", $oWkC->{Val}, "\n" if($oWkC); # Original Value
...oder liegt Dein Problem woanders?
Marko