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.

Using Apache POI to generate a document and i'm having a small problem with cell styles, currentlly i'm using:

CellStyle currencyCellStyle=workbook.createCellStyle();
currencyCellStyle.setDataFormat(format.getFormat("$#,##0.00"));

Which works totally fine for positive numbers, however I would like to assign a different style to negative cells automatically.

Question is is there any to set this up without having to check the individual cell values and assign a separate style to them?

Or alternatively is there any way to tell Apache POI to use the built in excel currency format with one of its negative options?

share|improve this question

1 Answer

up vote 1 down vote accepted

Found it, thanks me :D

CellStyle currencyCellStyle=workbook.createCellStyle();
currencyCellStyle.setDataFormat(format.getFormat("$#,##0.00;[Red]($#,##0.00)"));
share|improve this answer

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.