Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to read an Excel (xlsx) file using the code shown below. I get an "External table is not in the expected format." error unless I have the file already open in Excel. In other words, I have to open the file in Excel first before I can read if from my C# program. The xlsx file is on a share on our network. How can I read the file without having to open it first? Thanks

string sql = "SELECT * FROM [Sheet1$]";
string excelConnection = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + pathname + ";Extended Properties=\"Excel 8.0;HDR=YES;IMEX=1;\"";

using (OleDbDataAdapter adaptor = new OleDbDataAdapter(sql, excelConnection)) {
    DataSet ds = new DataSet();
    adaptor.Fill(ds);
}
share|improve this question

6 Answers

up vote 86 down vote accepted

"External table is not in the expected format." typically occurs when trying to use an Excel 2007 file with a connection string that uses: Microsoft.Jet.OLEDB.4.0 and Extended Properties=Excel 8.0

Using the following connection string seems to fix most problems.

public static string path = @"C:\src\RedirectApplication\RedirectApplication\301s.xlsx";
public static string connStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + path + ";Extended Properties=Excel 12.0;";
share|improve this answer
3  
Ironically, I received this error from someone else's application (Scribe), but the explanation still solved the problem for me: "Save As" Excel 97-2003, and error fixed. – Jeff Davis May 17 '11 at 15:34
3  
:( So many upvotes, but I still get the same error using your this version (replaced your path with the actual path, of course). – jp2code May 17 '12 at 19:57
.xlsx or .xls extension? – GeorgeMcDowd May 17 '12 at 20:17
you might have to install this first: microsoft.com/en-us/download/confirmation.aspx?id=23734 – arch stanton Dec 7 '12 at 7:48
this may be unbelievable, but i simply change the sheet name to all lowercase and use sheet1$ – Smith Apr 17 at 22:50

(I have too low reputation to comment, but this is comment on JoshCaba's entry, using the Ace-engine instead of Jet for Excel 2007)

If you don't have Ace installed/registered on your machine, you can get it at: http://www.microsoft.com/downloads/details.aspx?FamilyID=7554F536-8C28-4598-9B72-EF94E038C891&displaylang=en

It applies for Excel 2010 as well.

share|improve this answer
I have the ACE engine installed, but I need to know what reference I I need to include in my project so that my installer includes it. Not all machines that my app is installed on will necessarily have MS Office installed. – jp2code May 17 '12 at 16:17

Thanks for this code :) I really appreciate it. Works for me.

public static string connStr = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + path + ";Extended Properties=Excel 12.0;";

So if you have diff version of Excel file, get the file name, if its extension is .xlsx, use this:

Private Const connstring As String = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + path + ";Extended Properties=Excel 12.0;";

and if it is .xls, use:

Private Const connstring As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" + path + ";Extended Properties=""Excel 8.0;HDR=YES;"""
share|improve this answer
This is really helped – Ravia Jan 25 '11 at 17:24
2  
FYI: This will throw an OleDbException if you try to open an .xls file on a PC that does not have the Jet OleDb installed on it. – jp2code May 17 '12 at 20:00

Instead of OleDb, you could use the Excel Interop and open the worksheet as read-only.

http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel.workbooks.open(office.11).aspx

share|improve this answer

I have also seen this error when trying to use complex INDIRECT() formulas on the sheet that is being imported. I noticed this because this was the only difference between two workbooks where one was importing and the other wasn't. Both were 2007+ .XLSX files, and the 12.0 engine was installed.

I confirmed this was the issue by:

  • Making a copy of the file (still had the issue, so it wasn't some save-as difference)
  • Selecting all cells in the sheet with the Indirect formulas
  • Pasting as Values only

and the error disappeared.

share|improve this answer

I'm seeing this error when I try to read an .xlsx which is password protected. I'm using this answer to remove that password.

share|improve this answer

protected by Bill the Lizard Nov 1 '10 at 15:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.