Do you know how can I set the thousand sepator and have a value formatted like this? 403.000
I'm using apache-poi 3.8 with Java. I googled it a lot but I didn't find an answer. I can't use a string value because my formulas are not evaluated correctly in this way. Any help? thanks!
I've tried something like this:
cellStyle.setDataFormat(creationHelper.createDataFormat().getFormat("#.##0"));
but it doesn't work..