Task.PercentWorkComplete 屬性 (Project)
取得或設定一個任務的完成工時百分比。 唯讀的摘要任務。 讀取/寫入 Variant 。
語法
expression。 PercentWorkComplete
表達 代表 Task 物件的變數。
範例
下列範例會將工時完成百分比大於使用者指定百分比將使用中專案內每個任務 Marked 屬性設定為 True 。
Sub MarkTasks()
Dim T As Task ' Task object used in For Each loop
Dim Entry As String ' Percentage entered by user
' Prompt user for a percentage.
Entry = InputBox$("Mark tasks that exceed what percentage of work complete? (0-100)")
If Not IsNumeric(Entry) Then
MsgBox ("Please enter a number only.")
Exit Sub
ElseIf Entry < 0 Or Entry > 100 Then
MsgBox ("You did not enter a percentage from 0 to 100.")
Exit Sub
End If
' Mark tasks with percentage of work complete greater than user entry.
For Each T In ActiveProject.Tasks
If T.PercentWorkComplete > Val(Entry) Then
T.Marked = True
Else
T.Marked = False
End If
Next T
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。