To loop through only the tasks that are visible after applying a filter, select all tasks and loop through the collection of visible tasks.
Sub LoopThroughFilteredTasks()
Dim CurrentTaskUID As Long
CurrentTaskUID = ActiveCell.Task.UniqueID
FilterApply "dumb tasks"
SelectAll
Dim FilteredTasks As Tasks
Set FilteredTasks = ActiveSelection.Tasks
Dim tsk As Task
For Each tsk In FilteredTasks
' do something
Next tsk
FilterApply "&All Tasks"
Application.Find "Unique ID", "equals", CurrentTaskUID
End Sub
Note 1: While not necessary, users generally appreciate the active selection being restored at the end of the macro, thus the CurrentTaskUID
lines.
Note 2: Since filters can be complex, it is preferable to use the actual filter rather than try to replicate it in code.
object doesn't support this property or method
– peetmanDuration
, orFlag1
? – Shai Rado