From 6ccfcc9ed2e000e48dda8b6e29f295b5ee8e9c30 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 4 Jun 2013 16:51:03 -0500 Subject: just don't record cells without data at all --- lib/Spreadsheet/ParseXLSX.pm | 8 ++++---- 1 file 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') { -- cgit v1.2.3-54-g00ecf