Hello team,
I want to increase the precision value to more than two decimal points. I read data from attached excel sheet where second column [Amount] is type 'Number". Here i input amount value with decimals "545324555.005435" , then after reading in aspose it gives only "545324555". So I set the cell data style as below :
Style style = worksheet.getCells().getCellStyle(i,1);
style.setNumber(4);
row.get(1).setStyle(style);
After this code change, i am able to read the decimal points but only up tp two recision. I need amount value which is exact value in excel sheet. No rounding of required. I had a requirement to make that column type as "Number".