Do you know how I can set a thousand separators and have a value formatted like this? 403.000
I am using apache-poi 3.8 with Java. I searched a lot for it, but could not find an answer. I cannot use a string value because my formulas are not being evaluated correctly in this way. Any help? thanks!
I tried something like this:
cellStyle.setDataFormat(creationHelper.createDataFormat().getFormat("#.##0"));
but it does not work.
source share