Sha256: 911b0b9c54c560247d71752eb4ea92e32ef93af6906fbdeb4e39d956c623fe12

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

#!/usr/bin/ruby -w
# -*- coding: utf-8 -*-
#
# Example of how to use the WriteExcel module to write text and numbers
# to an Excel binary file.
#
# reverse('©'), March 2001, John McNamara, jmcnamara@cpan.org
#
# original written in Perl by John McNamara
# converted to Ruby by Hideo Nakamura, cxn03651@msj.biglobe.ne.jp
#
require 'writeexcel'

# Create a new workbook called simple.xls and add a worksheet
workbook  = WriteExcel.new('a_simple.xls');
worksheet = workbook.add_worksheet

# The general syntax is write(row, column, token). Note that row and
# column are zero indexed
#

# Write some text
worksheet.write(0, 0,  "Hi Excel!")


# Write some numbers
worksheet.write(2, 0,  3)          # Writes 3
worksheet.write(3, 0,  3.00000)    # Writes 3
worksheet.write(4, 0,  3.00001)    # Writes 3.00001
worksheet.write(5, 0,  3.14159)    # TeX revision no.?


# Write some formulas
worksheet.write(7, 0,  '=A3 + A6')
worksheet.write(8, 0,  '=IF(A5>3,"Yes", "No")')


# Write a hyperlink
worksheet.write(10, 0, 'http://www.perl.com/')

# File save
workbook.close

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
writeexcel-1.0.9 examples/a_simple.rb
writeexcel-1.0.8 examples/a_simple.rb
writeexcel-1.0.7 examples/a_simple.rb
writeexcel-1.0.6 examples/a_simple.rb
writeexcel-1.0.5 examples/a_simple.rb