Skip to content

Instantly share code, notes, and snippets.

@andyl
Created July 13, 2011 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyl/1080874 to your computer and use it in GitHub Desktop.
Save andyl/1080874 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rubygems'
require 'spreadsheet'
book = Spreadsheet.open 'input.xls'
sheet = book.worksheet 0
sheet[0,0] = "Changed Cell"
book.write 'output.xls'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment