Hi,
There is no direct way to do that. All what you have to do is to open the excel file and to iterate through the records using the datareader for example, and to populate the access db with the value.
Code below to open an excel file
DataSet myDataset = new DataSet();
string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=file.xls;" + "Extended Properties=Excel 8.0;";
//'You must use the $ after the object you reference in the spreadsheet
OleDbDataAdapter myData = new OleDbDataAdapter("SELECT * FROM [Sheet1$]", strConn);
myData.TableMappings.Add("Table", "ExcelTest");
myData.Fill(myDataset);
HTH
Regards