summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Spreadsheet/ParseXLSX.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Spreadsheet/ParseXLSX.pm b/lib/Spreadsheet/ParseXLSX.pm
index 5d941b6..4fb1d0f 100644
--- a/lib/Spreadsheet/ParseXLSX.pm
+++ b/lib/Spreadsheet/ParseXLSX.pm
@@ -105,11 +105,11 @@ sub _parse_sheet {
$sheet->{MaxCol} = $cmax;
for my $cell ($sheet_xml->find_nodes('//sheetData/row/c')) {
+ next unless $cell->first_child('v');
+
my ($row, $col) = $self->_cell_to_row_col($cell->att('r'));
- my $val = $cell->first_child('v')
- ? $cell->first_child('v')->text
- : undef;
- my $type = $cell->att('t') || 'n';
+ my $val = $cell->first_child('v')->text;
+ my $type = $cell->att('t');
my $long_type;
if ($type eq 's') {