Publisher) (MailMergeDataSource.TableName 屬性
會傳回 String ,代表內之資料的資料表名稱來源包含合併列印記錄的檔案。 傳回的值可能會是空白如果表格名稱為未知或不適用於目前的資料來源。 唯讀。
語法
運算式。TableName
表達 代表 MailMergeDataSource 物件的 變數。
傳回值
字串
範例
本範例會顯示訊息,列出合併列印資料來源表格的名稱。
Sub EmployeeTable()
With ActiveDocument.MailMerge.DataSource
Select Case .TableName
Case "Employees"
MsgBox "This is an Employee mail merge publication."
Case "Customers"
MsgBox "This is a Customers mail merge publication."
Case "Suppliers"
MsgBox "This is a Suppliers mail merge publication."
Case "Shippers"
MsgBox "This is a Shippers mail merge publication."
Case Else
MsgBox "This is a " & .TableName & " mail merge publication."
End Select
End With
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。