On Thu, May 24, 2012 at 10:15 AM, <frazzmata...@gmail.com> wrote: > I am using Spreadsheet::xlsx in a script that im using to pull data from > two separate columns in a spreadhseet and compare them. I only need a few > of the columns. > I have written a script that pulls the data from the spreadsheet and > prints it to a file. I need to specify specific columns. I assume I am > going to load the values in that column into two arrays to compare them. > Can anyone show me the syntax to use to pull data from one or three > specific columns >
This snippet prints the value of an individual cell: my $cell = $worksheet->{Cells}[$row][$column]; print $cell->value; -- Robert Wohlfarth