Resource.GroupBySummary property (Project)
True , wenn sich das ausgewählte Element in einer Ressourcenansicht in einer Gruppenzusammenfassungszeile befindet. andernfalls False. Schreibgeschützter boolescher Wert.
Syntax
Ausdruck. GroupBySummary
Ausdruck Eine Variable, die ein Resource-Objekt darstellt.
Hinweise
Wenn Sie einen Befehl Gruppieren nach einer Ressourcenansicht anwenden, anzeigen die Gruppe Sammelvorgangszeilen Definition der in der Spalte Name der Ressource. GroupBySummary -Eigenschaft ist True, wenn eine ausgewählte Zelle in einer Gruppe Hauptzeile befindet.
GroupBySummary -Eigenschaft ist, kann über die ActiveCell.Resource
-Eigenschaft, nicht über ActiveProject.Resources(x)
.
Beispiel
The following example applies the Complete and Incomplete Resources grouping to the Resource Sheet view, and then selects the first cell in each row of the view and tests whether the row is a group summary. The process continues until the row is empty, and then shows a message box with the test results for each row.
Sub ShowGroupByItems()
Dim isValid As Boolean
Dim res As Resource
Dim rowType As String
Dim msg As String
isValid = True
msg = ""
ActiveProject.Views("Resource Sheet").Apply
GroupApply Name:="Complete and Incomplete Resources"
Application.SelectBeginning
' When a cell in an empty row is selected, accessing the ActiveCell.Resource
' property results in error 1004.
On Error Resume Next
' Loop until a cell in an empty row is selected.
While isValid
Set res = ActiveCell.Resource
If Err.Number > 0 Then
isValid = False
Debug.Print Err.Number
Err.Number = 0
Else
If res.GroupBySummary Then
rowType = "' is a group-by summary row."
Else
rowType = "' is a resource row."
End If
msg = msg & "Resource name: '" & res.Name & rowType & vbCrLf
SelectCellDown
End If
Wend
MsgBox msg, vbInformation, "GroupBy Summary for Resources"
End Sub
Support und Feedback
Haben Sie Fragen oder Feedback zu Office VBA oder zu dieser Dokumentation? Unter Office VBA-Support und Feedback finden Sie Hilfestellung zu den Möglichkeiten, wie Sie Support erhalten und Feedback abgeben können.