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 know how to read a file using spreadsheet , but writing the same file is creating problem.

# I am using below :-                                                                  
require 'rubygems'
require 'spreadsheet'
Spreadsheet.client_encoding = 'UTF-8'
book = Spreadsheet.open 'C:/Copy of Copy of Book1.xls'
sheet1 = book.worksheet 0
row = sheet1.row(0)
a = row[0]
eval(a)
row[1] = 2 # here I am trying to add in the second column of first row.

row1 = sheet1.row(1)
a1 = row1[0]
eval(a1)
row2 = sheet1.row(2)
a2 = row2[0]
eval(a2)
row3 = sheet1.row(3)
a3= row3[0]
eval(a3)
row4 = sheet1.row(4)
a4= row4[0]
eval(a4)
row5 = sheet1.row(5)
a5= row5[0]
eval(a4)
book.write 'C:/Copy of Book1.xls' # finally writing

But the file changes to some other format and does not open after operation is completed. No error is thrown.

share|improve this question
what is your problem with writing? Add some error messages – nash May 5 '11 at 13:38
please check above code – James May 5 '11 at 13:56
I've got the same behavior with example from the documentation. So strange. Can you commit this bug to the bug tracker? rubyforge.org/tracker/… – nash May 5 '11 at 14:34
it seems nobody is there to answer on that link. may be i will get help here – James May 5 '11 at 18:32
What version of Ruby are you using? – jaredonline May 6 '11 at 1:37
show 1 more comment

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.