Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data may have lost error #33

Open
parmindersingh1 opened this issue Jan 16, 2014 · 1 comment
Open

Data may have lost error #33

parmindersingh1 opened this issue Jan 16, 2014 · 1 comment

Comments

@parmindersingh1
Copy link

Excel generated on ubuntu is ok but on windows it is showing data may have lost so i used compatibility mode now it is showing blank cells but on click on blank cell showing data on formula bar

@robertomiranda
Copy link

I was having the same issue but was a mistake iterating the an array, i was overwriting info like this

worksheet.write(0, 0, ''myheader',header)
array.each_with_index do |content, i|
  worksheet.write(i, 0, conent)
end

And I solved at this way

worksheet.write(0, 0, ''myheader',header)
array.each_with_index do |content, i|
  worksheet.write(i+1, 0, conent)
end

😊

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants