I am parsing an Excel workbook using RubyXL and discovered that workbook[0]
returns the first worksheet regardless of whether it is hidden.
I would like to isolate the first visible worksheet by coding something like workbook[0].not_hidden
.
How can this be done in RubyXL?