Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wrong Values for Cells #4

Closed
tophopstop opened this issue Jul 31, 2013 · 3 comments
Closed

Wrong Values for Cells #4

tophopstop opened this issue Jul 31, 2013 · 3 comments

Comments

@tophopstop
Copy link

Using the latest repo version, when I spot checked a few cells, I got wrong answers. Looking for something in A1, it was actually returning whats in AA1.

Here's a test:

#!/usr/bin/perl
use strict;
use Test::More;
use lib q|/home/jason/temp/spreadsheet-parsexlsx/lib|;
use Spreadsheet::ParseXLSX;
my $parser   = Spreadsheet::ParseXLSX->new();
ok($parser,'file parsed ok.');
my $workbook = $parser->parse('ms2.xlsx');
my $worksheet = $workbook->worksheet(0);
my $cell = $worksheet->get_cell( 0, 0 );
is($cell->value(),'Order Number', 'cell check 1');
$cell = $worksheet->get_cell( 1, 0 );
is($cell->value(),'364968', 'cell check 2');
done_testing;

Sample XLSX file

@doy doy closed this as completed in d89c1a7 Jul 31, 2013
@doy
Copy link
Owner

doy commented Jul 31, 2013

Let me know if that works for you, and if you run into any more issues.

@tophopstop
Copy link
Author

Confirmed fixed. Do you have any idea when the new version will be on CPAN?

I'll keep you posted if I find anything else.

Thanks!

@doy
Copy link
Owner

doy commented Jul 31, 2013

Was just waiting on confirmation that this was actually fixed. 0.04 is now uploaded.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants