Order of sheets in Excel file while reading with GetOleDbSchemaTable
I am using an ACE.OLEDB as below to read an excel file in C#. My Excel file has the following Sheets and in below order: Sheet1, Sheet1 (2), Sheet2 The variable sheetName in my code takes 'Sheet1 (2)' as first sheet instead of 'Sheet1'. My question is how does it determines the order of sheets? string connstring = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filename + ";Extended Properties='Excel 8.0;HDR=NO;IMEX=1';"; // Extra blank space cannot appear in Office 2007 and the last version. And we need to pay attention on semicolon. using (OleDbConnection conn = new OleDbConnection