Skip to content

Latest commit

 

History

History
71 lines (43 loc) · 1.3 KB

Project.Project.MapList.md

File metadata and controls

71 lines (43 loc) · 1.3 KB
title keywords f1_keywords ms.service api_name ms.assetid ms.date ms.localizationpriority
Project.MapList property (Project)
vbapj.chm132404
vbapj.chm132404
project-server
Project.Project.MapList
b124f86e-fec6-ab92-93ff-5db4eff16892
06/08/2017
medium

Project.MapList property (Project)

Gets a List object representing the list of data maps in the project. Read-only List.

Syntax

expression. MapList

expression A variable that represents a Project object.

Example

The following example prints the list of data maps in the active project.

Sub TestMapList() 
    Dim lst As List 
    Dim numLists As Integer 
    Dim i As Integer 
 
    Set lst = ActiveProject.MapList 
    numLists = lst.Count 
 
    For i = 1 To numLists 
        Debug.Print lst.Item(i) 
    Next i 
 
End Sub

Following is the default map list in Project:

  • Default task information

  • Task "Export Table" map

  • Resource "Export Table" map

  • Task list with embedded assignment rows

  • Task and resource PivotTable report

  • Top Level Tasks list

  • "Who Does What" report

  • Earned value information

  • Cost data by task

  • Compare to Baseline

[!includeSupport and feedback]