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 cannot get data to export into an excel spreadsheet... Code

def results

book = Spreadsheet::Workbook.new
sheet1 = book.create_worksheet

sheet1.row(0).push << [
'id', 'name', 'address', 'date', 'amount'
]

results.each_with_index do |r, i|

sheet1.row(i+1).push << [
r.id, r.name, r.address, r.date, r.amount
]

@output = book.write "#{filename}.xls"

send_data(@output, :type => "application/vnd.ms-excel", :filename =>"#{filename}.xls") 
end
end

I am getting an output of

#<Spreadsheet::Excel::Writer::Worksheet:0x651f3d8>

in my excel spreadsheet... Does anyone have any ideas? Thanks a lot!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.