Document.IsDataSourceConnected property (Publisher)
True if the specified publication is connected to a data source. Read-only.
Syntax
expression.IsDataSourceConnected
expression A variable that represents a Document object.
Remarks
A publication must be connected to a valid data source to perform a mail merge or catalog merge.
Example
The following example tests whether the publication is connected to a data source, and if it is not, specifies and connects a data source to the publication.
Before running this example, you must replace PathToFile
with a valid file path and TableName
with a valid data source table name.
Dim strDataSource As String
Dim strDataSourceTable As String
'Specify data source and table name
strDataSource = "PathToFile"
strDataSourceTable = "TableName"
'Connect to a datasource
If Not (ThisDocument.IsDataSourceConnected) Then
ThisDocument.MailMerge.OpenDataSource strDataSource, , strDataSourceTable
End If
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.