When accessing Excel data I use;
MyCommand = New System.Data.OleDb.OleDbDataAdapter( _
"select * from [Sheet1$]", MyConnection)
All help files etc. I've read till now use this to select all data from the sheet with name "Sheet1", but I do not know the name of the sheet, so is there a way to select the first sheet no matter it's name?
