FileStream stream = File.Open(excelFilePath, FileMode.Open, FileAccess.Read);
excelReader = Excel.ExcelReaderFactory.CreateOpenXmlReader(stream);
DataSet result = excelReader.AsDataSet();
result is null for the attached file.
Comments: ** Comment from web user: bvolkan **
excelReader = Excel.ExcelReaderFactory.CreateOpenXmlReader(stream);
DataSet result = excelReader.AsDataSet();
result is null for the attached file.
Comments: ** Comment from web user: bvolkan **
I suppose that this file was created with Excel 2007 (saved as Excel Workbook). I have the same problem. When i Opened this file in 2010 and saved it, everything passed. Any new on this one?