Export to Excel Spreadsheet

Hi Everyone,

I’m looking for a reporter for Ruby, I need to export some data to a
predefined Excel spreadsheet, I am trying to use jasper but I can’t find
a good tutorial.

Thanks in advance

CORPO. ALAN MACIEL wrote:

I’m looking for a reporter for Ruby, I need to export some data to a
predefined Excel spreadsheet, I am trying to use jasper but I can’t find
a good tutorial.

This was found with a cursory look at an archive search:

excel = WIN32OLE.new(‘Excel.Application’)
workbook = excel.Workbooks.Open(‘c:\temp\MyWorkbook.xls’)

The archive is a good place to start with questions like this.