Sha256: 6716c2d50ec80c9897497aa9d80ae5c38b189bca59bb492cc84c34261a86cc0e
Contents?: true
Size: 1.04 KB
Versions: 5
Compression:
Stored size: 1.04 KB
Contents
# -*- coding: utf-8 -*- #!/usr/bin/ruby -w ###################################################################### # # Example of writing repeated formulas. # # reverse('©'), August 2002, John McNamara, jmcnamara@cpan.org # # original written in Perl by John McNamara # converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp # require 'rubygems' require 'writeexcel' workbook = WriteExcel.new("repeat.xls") worksheet = workbook.add_worksheet limit = 1000 # Write a column of numbers 0.upto(limit) do |row| worksheet.write(row, 0, row) end # Store a formula formula = worksheet.store_formula('=A1*5+4') # Write a column of formulas based on the stored formula 0.upto(limit) do |row| worksheet.repeat_formula(row, 1, formula, nil, /A1/, 'A'+(row+1).to_s) end # Direct formula writing. As a speed comparison uncomment the # following and run the program again #for row (0..limit) { # worksheet.write_formula(row, 2, '=A'.(row+1).'*5+4') #} workbook.close
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
writeexcel-0.5.0 | examples/repeat.rb |
writeexcel-0.4.3 | examples/repeat.rb |
writeexcel-0.4.2 | examples/repeat.rb |
writeexcel-0.4.1 | examples/repeat.rb |
writeexcel-0.4.0 | examples/repeat.rb |