Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 1.87 KB

Access.DoCmd.Rename.md

File metadata and controls

52 lines (31 loc) · 1.87 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
DoCmd.Rename method (Access)
vbaac10.chm4168
vbaac10.chm4168
Access.DoCmd.Rename
c9286727-a172-b7c5-c8b4-6e63012db98a
03/07/2019
medium

DoCmd.Rename method (Access)

The Rename method carries out the Rename action in Visual Basic.

Syntax

expression.Rename (NewName, ObjectType, OldName)

expression A variable that represents a DoCmd object.

Parameters

Name Required/Optional Data type Description
NewName Required Variant A string expression that's the new name for the object that you want to rename. The name must follow the object-naming rules for Microsoft Access objects.
ObjectType Optional AcObjectType An AcObjectType constant that specifies the type of object to rename. The default value is acDefault.
OldName Optional Variant A string expression that's the valid name of an object of the type specified by the ObjectType argument. If you execute Visual Basic code containing the Rename method in a library database, Access looks for the object with this name first in the library database, and then in the current database.

Remarks

Use the Rename method to rename a specified database object.

If you leave the ObjectType and OldName arguments blank (the default constant, acDefault, is assumed for ObjectType), Access renames the object selected in the Database window. To select an object in the Database window, you can use the SelectObject method with the InDatabaseWindow argument set to Yes (True).

Example

The following example renames the Employees table.

DoCmd.Rename "Old Employees Table", acTable, "Employees"

[!includeSupport and feedback]