Parent Property

Returns the parent object.

expression.Parent

expression Required. An expression that returns one of the objects in the Applies To list.

Example

This example returns the parent object of the application.

Sub UseParent() 
 
 Application.Parent 
 
End Sub