You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parse error on value ":" (error)
from /usr/local/lib/ruby/2.1.0/racc/parser.rb:529:in on_error' from /usr/local/lib/ruby/2.1.0/racc/parser.rb:258:in_racc_do_parse_c'
from /usr/local/lib/ruby/2.1.0/racc/parser.rb:258:in `do_parse'
on a line of code like:
worksheet.write(row_index, col_index, col_value.to_s)
where col_value is a String similar to
word : word : word\nword : ....
The text was updated successfully, but these errors were encountered:
Worksheet#write calls write_formula when string matches /^=/. write_formula call parse_formula to parse string as formula. If string is not excel formula, racc causes error. It is recommended for you to use write_string if you want to store string.
parse error on value ":" (error)
from /usr/local/lib/ruby/2.1.0/racc/parser.rb:529:in
on_error' from /usr/local/lib/ruby/2.1.0/racc/parser.rb:258:in
_racc_do_parse_c'from /usr/local/lib/ruby/2.1.0/racc/parser.rb:258:in `do_parse'
on a line of code like:
worksheet.write(row_index, col_index, col_value.to_s)
where col_value is a String similar to
word : word : word\nword : ....
The text was updated successfully, but these errors were encountered: