Specifically what I am trying to do is add new worksheets alongside ones already there. I\'ve tried to use book.create_worksheet :name => \'new_sheet\' but it ov
book.create_worksheet :name => \'new_sheet\'
I found out that you can create many sheets with the same variable, you just have to change the name you put on it. For example:
articles.each do |art| sheet1 = book.create_worksheet :name => art.code end