Skip to content

Instantly share code, notes, and snippets.

@niallsmart
Created October 8, 2013 01:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save niallsmart/6878157 to your computer and use it in GitHub Desktop.
Save niallsmart/6878157 to your computer and use it in GitHub Desktop.
Axlsx line break
require 'axlsx'
Axlsx::Package.new do |package|
workbook = package.workbook
workbook.add_worksheet do |sheet|
wrap = workbook.styles.add_style alignment: {wrap_text: true}
sheet.add_row ["Foo\r\nBar", "Foo\rBar", "Foo\nBar", "Foo\n\r\nBar"], style: wrap
end
package.serialize "linebreak.xlsx"
end
@christianroy
Copy link

Re: Mac OSX, please note it's use_shared_strings (with an S at then end), not use_shared_string.

@quevon24
Copy link

Thanks, works great in Excel

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment