When I write Excel files using jxl and use my own cell format, I get this warning: the maximum number of formatted cells is highlighted. Using the default format "I have about 350 cells that need to be formatted, which is relatively small for me. Am I doing something wrong? I use loops to adjust the format of my cell. Or is there a way to increase the number of formatted cells" All my code is a long but simple formatting example:
for (int = 0; i <30; i ++)} ws.getWritableCell (2, i) .setCellFormat (sumrow ());
{
source
share