Share via


ReportList Property

Returns a List object representing the reports in the active project. Read-only.

Example

The following example lists all the reports in the active project.

Sub SeeAllReports()

    Dim Temp As Variant
    Dim ReportNames As String
    
    For Each Temp In ActiveProject.ReportList
        ReportNames = ReportNames & vbCrLf & Temp
    Next Temp
    
    MsgBox ReportNames
    
End Sub

Applies to | Project Object, Projects Collection Object

See Also | ResourceFilterList Property | ResourceTableList Property | ResourceViewList Property | TaskFilterList Property | TaskTableList Property | TaskViewList Property | ViewList Property