L
luvgreen
Greetings!
Is there a way to get count of tasks returned from applying filter? Thanks.
Is there a way to get count of tasks returned from applying filter? Thanks.
Thanks.luvgreen said:Also how can I know if filter returns nothing. Thanks.
JackD said:Sub countOfFilteredTasks()
SelectAll
On Error GoTo ErrorHandler
MsgBox ActiveSelection.Tasks.Count
Exit Sub
ErrorHandler:
MsgBox "No tasks returned by filter"
End Sub
-Jack
Thanks.