Application.GlobalReports property (Project)

Gets the collection of global (built-in) reports. Read-only Reports.

Syntax

expression. GlobalReports

expression A variable that represents an Application object.

Example

The following example prints a list of built-in reports in the Immediate window of the VBE.

Sub ListGlobalReports()
    Dim oReport As Report

    Debug.Print "Number of global reports: " & GlobalReports.Count
    
    For Each oReport In GlobalReports
        Debug.Print oReport.Index & ": " & oReport.Name
    Next oReport
End Sub

Following is the output for the RTM release of Project:

Number of global reports: 21
1: Project Overview
2: Burndown
3: Cost Overview
4: Work Overview
5: Task Cost Overview
6: Overallocated Resources
7: Upcoming Tasks
8: Earned Value Report
9: Cash Flow
10: Resource Cost Overview
11: Cost Overruns
12: Resource Overview
13: Milestone Report
14: Critical Tasks
15: Slipping Tasks
16: Late Tasks
17: Get started with Project
18: Create reports
19: Organize tasks
20: Share with your team
21: Best Practice Analyzer

Property value

REPORTS

See also

Application Object

Reports Object

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.