3 Go to Database Tools tab > click on "Visual Basic" button or hit Alt + F11.
4 Go to Insert tab > click on "Module" or hit M.
5 Copy the VBA code from below.
6 Paste the code in the newly created module.
7 Go to Run tab > click on "Run Sub/UserForm" or hit F5.
8 That's it!
Advertisement
Code
Option Compare Database
'==========================================
' Create New Blank Database With DAO
'==========================================
Sub createNewBlankDatabaseDAO()
' Set variables
Dim wksp As Workspace
Dim db As Database
Dim prp As Property
' Set workspace
Set wksp = CreateWorkspace("AccessWorkspace", "admin", "", dbUseJet)
' Create new database
Set db = wksp.CreateDatabase("F:\VBAmacros\Access\test.accdb", dbLangGeneral)
' Close database
db.Close
' Close workspace
wksp.Close
' Release objects
Set db = Nothing
Set wksp = Nothing
End Sub