Sha256: 76d57306a5100ea32dc22ee75dcb38b3f3be9f1dd45c283394943c73c2fc7086

Contents?: true

Size: 1.13 KB

Versions: 6

Compression:

Stored size: 1.13 KB

Contents

#!/usr/bin/env ruby
# -*- coding: utf-8 -*-

##############################################################################
#
# An example of turning off worksheet cells errors/warnings using the
# Excel::Writer::XLSX module.
#
# Copyright 2000-2021, John McNamara, jmcnamara@cpan.org
# convert to ruby by Hideo NAKAMURA, nakamura.hideo@gmail.com
#

require 'write_xlsx'

workbook = WriteXLSX.new('ignore_errors.xlsx')
worksheet = workbook.add_worksheet

# Write strings that looks like numbers. This will cause an Excel warning.
worksheet.write_string('C2', '123')
worksheet.write_string('C3', '123')

# Write a divide by zero formula. This will also cause an Excel warning.
worksheet.write_formula('C5', '=1/0')
worksheet.write_formula('C6', '=1/0')

# Turn off some of the warnings:
worksheet.ignore_errors(
  :number_stored_as_text => 'C3',
  :eval_error => 'C6'
)

# Write some descriptions for the cells and make the column wider for clarity.
worksheet.set_column('B:B', 16)
worksheet.write('B2', 'Warning:')
worksheet.write('B3', 'Warning turned off:')
worksheet.write('B5', 'Warning:')
worksheet.write('B6', 'Warning turned off:')

workbook.close

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
write_xlsx-1.09.4 examples/ignore_errors.rb
write_xlsx-1.09.3 examples/ignore_errors.rb
write_xlsx-1.09.2 examples/ignore_errors.rb
write_xlsx-1.09.1 examples/ignore_errors.rb
write_xlsx-1.09.0 examples/ignore_errors.rb
write_xlsx-1.08.2 examples/ignore_errors.rb