Issue with spreadsheet

Hi There,

We are using Aspose.Cells for Java to update some fields and tags in a spreadsheet dynamically. One of the spreadsheet we have is throwing an error when we open it after it is synced with Aspose. Herewith I have attached the spreadsheet before and after update with Aspose. Please help us to resolve this issue.

Thanks,
Manikandan

Hi,

Thanks for your posting and using Aspose.Cells for Java.

I have tried your source xlsx file using the code below with the latest version:
Aspose.Cells
for Java v7.0.4.7



and found it is working fine.

I have attached both the source and output file. If the problem still occurs at your end, then please provide me full code to replicate the problem.

Java


String filePath=“F:\Shak-Data-RW\Downloads\Hyperlink+Tests.xlsx”;


//Instantiating a Workbook object

Workbook workbook = new Workbook(filePath);


//Saving the modified Excel file in default (that is Excel 2003) format

workbook.save(filePath + “.out.xlsx”);