Hi Aspose Team,
We are using Aspose cell in our project to copy data from one sheet in an excel file to another exel sheet , run some formula on 2nd sheet & save the result as csv..below is the sample code
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Workbook workbook = new Workbook();
String inputFileName ="c:\\temp\\input.xls";
workbook.open(inputFileName);
Worksheet inputWorksheet = workbook.getWorksheets().getSheet(0);
Workbook template = new Workbook();
template.open("C:\\temp\\template.xls");
Worksheet templateWorksheet = template.getWorksheets().getSheet(0);
templateWorksheet.copy(inputWorksheet);
template.calculateFormula();
template.getWorksheets().setActiveSheet(1);
template.save("C:\\temp\\result.csv", FileFormatType.CSV);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In order to start supporting excel 2007 , I downloaded the lastest version of Aspose Cell from ur website(v1.9.5.0) & the same code genertaed output csv with some blanks rows between rows making the result csv extremely big.
I remember having similar issue before , after I had downloaded a previous latest version ..but Aspose team provide me a fix & it worked...Please provide a fix so that same previous functionaility can work along with excel 2007.
Thxs,
Rohit