We are using gem roo for reading file and paperclip for storing file in the database.
We want to open a same file in local and update a single cell, after that upload/replace the same file in the database using paperclip.
Is this possible to do with roo and paperclip gem?
We have checked spreadsheet gem but this gem is only supports the xls file not xlsx file
According to roo's documentation you cannot use it to write to an xlsx file:
But you can use rubyXL instead. Here's a short example that edits a cell:
Check out more examples in rubyXL's usage documentation.