Iam entering data in cell as 916756756767 but it is coming as 91E778
something .pls give me the suggestion as earlier as possible
I tried like this
Worksheet sheet = workbook.getWorksheets().getSheet(sheetNum);Style style = workbook.createStyle();
style.setHAlignment(TextAlignmentType.LEFT);
style.setNumber(1);
Cell cell = sheet.getCells().getCell(rowIndex, columnIndex);
if (cellData != null) {
cell.setValue(cellData);
}
cell.setStyle(style);
but it is not working
This message was posted using Aspose.Live 2 Forum