Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.02 KB

Project.Group.GroupCriteria.md

File metadata and controls

36 lines (23 loc) · 1.02 KB
title ms.service api_name ms.assetid ms.date ms.localizationpriority
Group.GroupCriteria property (Project)
project-server
Project.Group.GroupCriteria
c021a7ca-1e80-4318-7612-3d2bf579b683
06/08/2017
medium

Group.GroupCriteria property (Project)

Gets or sets a GroupCriteria collection representing the fields in a group definition. Read/write GroupCriteria.

Syntax

expression. GroupCriteria

expression A variable that represents a Group object.

Example

The following example adds a criterion to the specified resource group, grouping resources in ascending order as determined by the percentage of their work (in 5% increments) that is complete.

Sub AddCriterionWithInterval() 
 ActiveProject.ResourceGroups("Response Pending").GroupCriteria.Add "% Work Complete", 
 True, CellColor:=pjRed, GroupOn:=pjGroupOnPctInterval, StartAt:=5, GroupInterval:=5 
End Sub

[!includeSupport and feedback]