Hi I am trying to generate a excel having more than 400 columns but when I do that only 255 columns are generated upto IV column
<pre style=“background-color: rgb(255, 255, 255); font-family: “Fira Code”; font-size: 9pt;”>package com.va;
import com.aspose.cells.*;
public class Test {
public static void main(String[] args) throws Exception {
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.getWorksheets().get(0);
for (int i = 0; i < 300; i++) {
Cell cell = worksheet.getCells().get(0, i);
cell.setValue(i);
}
workbook.save("./output/dummy.xls");
}
}
<pre style=“background-color: rgb(255, 255, 255); font-family: “Fira Code”; font-size: 9pt;”>
<pre style=“background-color: rgb(255, 255, 255); font-family: “Fira Code”; font-size: 9pt;”>can you tell me whats the issue?
import com.aspose.cells.*;
public class Test {
public static void main(String[] args) throws Exception {
Workbook workbook = new Workbook();
Worksheet worksheet = workbook.getWorksheets().get(0);
for (int i = 0; i < 300; i++) {
Cell cell = worksheet.getCells().get(0, i);
cell.setValue(i);
}
workbook.save("./output/dummy.xls");
}
}
<pre style=“background-color: rgb(255, 255, 255); font-family: “Fira Code”; font-size: 9pt;”>
<pre style=“background-color: rgb(255, 255, 255); font-family: “Fira Code”; font-size: 9pt;”>can you tell me whats the issue?