in reply to Re: Spreadsheet::XLSX Values into DB Help!
in thread Spreadsheet::XLSX Values into DB Help!
... foreach my $col ($sheet -> {MinCol} .. $sheet -> {MaxCol}) { my $cell = $sheet -> {Cells} [$row] [$col]; if ($cell) { #printf("( %s , %s ) => %s<br>", $row, $col, $cell -> +{Val}); my $name_val = $sheet->{Cells}[$row][0]->{Val}; my $address_val = $sheet->{Cells}[$row][1]->{Val}; print "\n\n Test Results::: $name_val -> $address_val\ +n"; } } ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Spreadsheet::XLSX Values into DB Help!
by runrig (Abbot) on Aug 19, 2012 at 05:52 UTC |