GroupCriterion.GroupOn property (Project)

Gets or sets the type of grouping for a field used as a criterion in a group definition. Read/write PjGroupOn.

Syntax

expression. GroupOn

expression A variable that represents an GroupCriterion object.

Remarks

The GroupOn property can be one of the PjGroupOn constants.

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 that is complete. The GroupOn argument specifies that grouping is by a percentage interval.

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

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.