I'm trying to get a table, for example A1:A9 to G1:G9.
My problem is, there are other elements in the sheet that I don't want to iterate through.
workbook = RubyXL::Parser.parse("excelFIle.xlsm")
worksheet = workbook[0]
data = worksheet.extract_data
# => [ [ x, x, x, x, x, x, x, x, x, y, y, y, y, y, y, y, y, y, y ],
# [ x, x, x, x, x, x, x, x, x, y, y, y, y, y, y, y, y, y, y ],
# ...
# ]
Is there a way to only parse the "x" portion A1:A9 to G1:G9, or do I need to cut it manually from data
?