Method: Axlsx::Cell#is_array_formula?
- Defined in:
- lib/axlsx/workbook/worksheet/cell.rb
#is_array_formula? ⇒ Boolean
350 351 352 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 350 def is_array_formula? type == :string && @value.to_s.start_with?('{=') && @value.to_s.end_with?('}') end |