|
I have a spreadsheet where the values look like this
1 2 2 2 1.5
3 3 3 1 1
If I run the following code on it the results I get
for my $row (@otherRows) {
my @rcell = $doc->getRowCells($row);
for (my $i=0; $i<@title; $i++) {
print $doc->getCellValue($rcell[$i])." ";
}
print "\n";
}
Results
1 2 1.5
3 1
Am I implementing this wrong or is it a problem in the module?
Using OpenOffice-OODoc-2.022
|