Hi,
I am using Aspose cells 4.0 version for reporting. in the reporting template i have 8 sheets. i am adding one row using Asp.net program in the first sheet the 4 th sheet has some formulas refer to the first sheet. while adding the row the 4 th sheet formulas are not updating can you help me on this
i have given some coding examples to adding the row i could not attach the excel file because it is highly confidential file
Aspose.Cells.Worksheet theAPWorksheet;
Aspose.Cells.Workbook theAPWorkbook = new Aspose.Cells.Workbook();
serverpath = Server.MapPath(".") + "\\Template\\OutputTemplate.XLS";
theAPWorkbook.Open(serverpath);
theAPWorkbook.Worksheets[1].Cells.InsertRow(OuterCount + Convert.ToInt32(dtcount.Rows[0].ItemArray[0]) - 1);
Regards,
Unichem