ExcelFunctions

Reverse engineered versions of some Excel functions This gem can be used if you need to reverse engineer any excel spreadsheets. Use the functions here to convert excel formulae into ruby code easily

Installation

Add this line to your application's Gemfile:

gem 'excel_functions'

And then execute:

$ bundle

Or install it yourself as:

$ gem install excel_functions

Usage

This gem can be used in 2 ways.

  1. Include ExcelFunctions module in the class that needs it and use its functions
  2. Use the Excel.<function> style anywhere.

TODO

  • more docs about the functions themselves, for now, you can take a look at the code

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request