summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--lib/axlsx/workbook/defined_name.rb2
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6f146144..9bd68df1 100644
--- a/README.md
+++ b/README.md
@@ -90,9 +90,11 @@ cell level input data validation.
**16. Support for password and non password based sheet protection.
-**17. First stage interoperability support for GoogleDocs, LibraOffice,
+**17. First stage interoperability support for GoogleDocs, LibreOffice,
and Numbers
+**18. Support for defined names, which gives you repeated header rows for printing and a whole bunch of out there stuff. Have a look at lib/axlsx/workbook/defined_name.rb for all the gory glory
+
Installing
----------
diff --git a/lib/axlsx/workbook/defined_name.rb b/lib/axlsx/workbook/defined_name.rb
index 391425c7..da558956 100644
--- a/lib/axlsx/workbook/defined_name.rb
+++ b/lib/axlsx/workbook/defined_name.rb
@@ -109,7 +109,7 @@ module Axlsx
STRING_ATTRIBUTES = [:short_cut_key, :status_bar, :help, :description, :custom_menu, :comment, :name]
# boolean attributes that will be added when this class is evaluated
- BOOLEAN_ATTRIBUTES = [:workbook_parameter, :publish_to_server, :xml, :vb_proceedure, :function, :hidden]
+ BOOLEAN_ATTRIBUTES = [:workbook_parameter, :publish_to_server, :xlm, :vb_proceedure, :function, :hidden]
# Dynamically create string attribute accessors
STRING_ATTRIBUTES.each do |attr|