Hi @R K
You could use the following code from https://www.techonthenet.com/access/questions/new_mdb.php:
(the only edit I had was the dbVersion Set db = ws.CreateDatabase(LFileName, dbLangGeneral, dbVersion40)
)
Sub newDB()
Dim ws As Workspace
Dim db As Database
Dim LFilename As String
'Get default Workspace
Set ws = DBEngine.Workspaces(0)
'Path and file name for new mdb file
LFilename = "c:\NewDB.mdb"
'Make sure there isn't already a file with the name of the new database
If Dir(LFilename) <> "" Then Kill LFilename
'Create a new mdb file
Set db = ws.CreateDatabase(LFilename, dbLangGeneral, dbVersion40)
db.Close
Set db = Nothing
End Sub
-------------------------------------------
If this is helpful please accept answer.