Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to export a .xls file from my rail application and can not seem to get it to work. I am new to ruby and rails... Here is a sample of my code...

def results

book = Spreadsheet::Workbook.new

sheet1 = book.create_worksheet do |row|

row << [ 'name', 'address', 'date', 'amount' ]

results.each do |r|

row << [ r.name, r.address, r.date, r.amount ]

send_data(sheet1, :type => "application/xls", :filename => "#{client.client_id} #{source.source_id} - search results - #{DateTime.now.strftime("%m.%d.%y")}.xls")

the output I am getting in the xls fils is ... #<Spreadsheet::Worksheet:0x5fb8fd8>

end

Anyone know what I am doing wrong?

share|improve this question
I still have not been able to solve this problem... does anyone have any ideas? – user1563849 Aug 2 '12 at 13:27

1 Answer

up vote 1 down vote accepted

Did you look the documentation here ? http://spreadsheet.rubyforge.org/GUIDE_txt.html

Sounds like you're using a mix of the syntax used for reading and writing at the same time.

You should do something like :

sheet1 = book.create_worksheet
sheet1.row(0) << [ 'name', 'address', 'date', 'amount' ]
results.each_with_index do |r, i|
  sheet1.row(i+1) << [ r.name, r.address, r.date, r.amount ]
end

I didn't try it, but it shoulnd't be far from what is needed :)

share|improve this answer
I tried that and still getting the same out put in the excel file... I get a warning when trying to open the excel file... "The file you are trying to open, [filename.xls] is in a different format than specified by the file extension"?? I have the require in the Gemfile and the encoding on the top of the page... do I need anything else? I am trying to fix another persons code... – user1563849 Jul 30 '12 at 20:17
Do you write to the file like this before send_data ? book.write '/path/to/output/excel-file.xls' – Anthony Alberto Jul 30 '12 at 20:22
I have this in mime_type.rb... Mime::Type.register "application/xls", :xls – user1563849 Jul 30 '12 at 20:24
no I do not do a book.write before send_data, do I need to? – user1563849 Jul 30 '12 at 20:25
Well in the send_data instruction you're sending a file, so you should write in the same file before sending it I guess – Anthony Alberto Jul 30 '12 at 20:27
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.