I'm currently using roo to read a set of spreadsheets. I'd like to be able to skip certain rows when I itterate over each one (to skip header rows, etc). Is there any way to do this? I figure I could just use an index in the loop, but I was wondering if there was a "roo" way to do it.
Something like:
spreadsheet.each(c1: "Column1", c2: "Column2") do |therow|
next if therow.row(1)
end
Thanks!