Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
出力ファイルのテンプレートとして Sheet1 を使用する複数のシートを rubyxl を使用して生成することは可能ですか?
template = RubyXL::Parser.parse 'path/to/template.xlsx' sheet1 = template.worksheets[0] sheet2 = template.worksheets[0] #your code manipulating sheet1, sheet2 etc. return RubyXL::Workbook.new [sheet1, sheet2]