Documents.Item method (Word)

Returns an individual Document object in a collection.

Syntax

expression.Item (Index)

expression Required. A variable that represents a Documents object.

Parameters

Name Required/Optional Data type Description
Index Required Long or String One-based index of the object to be returned (Long), or the name of the object (String).

Return value

Document

Example

This example displays the name of the first document in the Documents collection.

Sub DocumentItem() 
 If Documents.Count >= 1 Then 
 MsgBox Documents.Item(1).Name 
 End If 
End Sub

This example saves the document named Reports.docx.

Documents.Item("Reports.docx").Save

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.