@kiran5388,
You may try to to use Worksheet.Cells.RemoveFormulas() method for your source worksheet in the source workbook before copying it to destination workbook. This will replace underlying formulas with calculated values in the cells. See the following sample code for your reference:
e.g.
Sample code:
//Instantiate a Workbook object that represents the your source Excel file
Workbook _workbook = new Workbook("e:\test2\Sample.xlsx");
//your destination workbook.
Workbook workbook = new Workbook();
Clear existing worksheet(s) and add a new sheet named "Report" to it.
workbook.Worksheets.Clear();
workbook.Worksheets.Add("Report");
//Remove formulas by calculated results in your source sheet e.g. named "Report" which is to be copied to other workbook.
_workbook.Worksheets["Report"].Cells.RemoveFormulas();
//Get your source sheet in the source workbook
Worksheet worksheet = _workbook.Worksheets["Report"];
//Copy from source to destination
workbook.Worksheets["Report"].Copy(worksheet);
//Save your destination file.
workbook.Save("e:\\test2\\out1.xlsx");
Hope, this helps a bit.