in reply to Read entire row and/or sheet with Spreadsheet::Read

row() needs a reference to the sheet. So this should work to get the 6th row of the 1st sheet:
use Spreadsheet::Read qw(row rows); my $ref2 = ReadData ("test.xls"); my @row = row($ref2->[1], 6);