I need to write very large numbers to the excel cell (> 91430000000000000000) The problem is that the maximum value for the cell 9143018315613270000, and all values that are greater than - will be replaced with the maximum value. This problem will be simply solved by hand if the apostrophe is added to the number, for example, '9143018315313276189
But what about the trick through the apache POI? I have a code:
attrId.setCellValue(new XSSFRichTextString('\'' + value.getId().toString()));
But this does not work:

Here the first line has no apostrophe at all, the second is handwritten, and this is the result I'm looking for. Thirdly, this is the result of my code. I also tried using setCellValue, which takes double and String, both of which do not help me on the air.
So here the question arises: how to write very large numbers in excel via apache POI?