YOu probably want to open a particular recordset or something right?
DoCmd.OpenForm FormName
or
DoCmd.OpenTable "TableName"
You can use that line to open a form in the access database...
Since the excel code is opening the database, Excel is actually controlling the action. You can use the DoCmd line to open a query, table or other recordset... just change "FormName" to the form you want them to get to when..