while (my $data = $ss->getNextRow()) { # skip lines until we find column header "Last Name" in first column next if $data[0] eq 'Last Name'; ... stuff ... }