From 2133ff7371f4f60bd060846c314efcd0ca63d10c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 5 Sep 2013 14:13:42 -0400 Subject: also support string formulas (#6) --- lib/Spreadsheet/ParseXLSX.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Spreadsheet/ParseXLSX.pm b/lib/Spreadsheet/ParseXLSX.pm index e483bd1..1aa14eb 100644 --- a/lib/Spreadsheet/ParseXLSX.pm +++ b/lib/Spreadsheet/ParseXLSX.pm @@ -164,6 +164,9 @@ sub _parse_sheet { $long_type = 'Text'; $val = $val ? "TRUE" : "FALSE"; } + elsif ($type eq 'str') { + $long_type = 'Text'; + } else { die "unimplemented type $type"; # XXX } -- cgit v1.2.3-54-g00ecf