Reputation: 6469
Is there a Ruby gem that can write formulas to an xls/xlsx spreadsheet? The Spreadsheet gem doesn't appear to allow this, at least not in the latest version. Are there any gems out there that allow this or am I stuck doing it in a csv file?
Thanks,
Ben
Upvotes: 2
Views: 1240
Reputation: 2891
I had this exact same problem and there is a gem that will do this for you!
Check out writeexcel. It will write all those formulas you have been missing. Here is an example of how it works:
worksheet.write('B5', '=SIN(B4/4)')
Hope this helps!
Upvotes: 2