// using
using OfficeOpenXml;
using OfficeOpenXml.Style;
tring file = @"F:\REPORT\1111\Chromium (III)_25570804 095424.Report";
using (ExcelPackage package = new ExcelPackage(new System.IO.FileInfo(file)))
{
// add a new worksheet to the empty workbook
ExcelWorksheet worksheet = package.Workbook.Worksheets[0];
MessageBox.Show(worksheet.Cells[2,7].Value.ToString());
// --------- Data and styling goes here -------------- //
}