GroupCriterion.GroupInterval property (Project)

Gets or sets the interval for a field used as a criterion in a group definition. Read/write Variant.

Syntax

expression. GroupInterval

expression A variable that represents an GroupCriterion 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 that is complete. The interval for the group criterion is 5%.

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.