Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I 'm using Spreadsheet gem to create excel sheet. how can I apply 'currency' number format to a particular cell ?

share|improve this question

1 Answer

Not tried it out but perhaps the following will point you in the right direction:

nb_format = Spreadsheet::Format.new  :number_format => '$#,###.##'
cell.set_format(0, nb_format)
share|improve this answer
currency_format = Spreadsheet::Format.new :number_format => '$#,##0.00_);[Red]($#,##0.00)' sheet.row(index).set_format(5, currency_format) This worked better for me. – Rutvij Pandya Apr 2 '12 at 11:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.