place this codes in a module in Excel
sub createTable()
on error resume next
Dim db As Database, strSQL As String, dbPath As String
dbpath="C:\myFolder\myDb.accdb"
set db=opendatabase (dbPath,True)
db.execute "drop table customers" 'delete the table customers
strSql="select CustomersTrimmed.* into Customers from CustomersTrimmed"
db.execute strSql
db.close
end sub