Reports.Add 方法 (Project)
將自訂報表加入至 Reports 集合。
表達式。新增 (名稱)
表達 代表 『Reports』 物件的變數。
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Name | 必要 | 字串 | 報表的名稱。 |
名稱 | 必要 | 字串 |
Report
加入的自定義報表物件。
新的報表是空的;它不包含任何圖形,例如表格或圖表。 若要將圖形新增至報表,您可以使用 Shapes 物件中的方法,例如 AddChart 和 AddTable。
下列範例會新增名為 Report 1 的空白報表,並顯示報表。
Sub AddReport()
ActiveProject.Reports.Add "Report 1"
End Sub
若要刪除報表,您必須變更為不同的檢視,如下列範例所示:
Sub DeleteAReport()
Dim reportName As String
reportName = "Report 1"
If ActiveProject.Reports.IsPresent(reportName) Then
' To delete the active report, change to another view.
ViewApplyEx Name:="&Gantt Chart"
ActiveProject.Reports(reportName).Delete
Else
MsgBox Prompt:="No report name: " & reportName, Title:="Report delete error"
End If
End Sub
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。