For Each oTask In ActiveProject.Tasks ?

N

Newbie

Hello,

I need to browse all the tasks in my project, but not from ID = 1 to ID = x
as is doing the For Each oTasks In ActiveProject.Tasks.
I need to browse the tasks in the order they are displayed after Project /
Sort by....
How can I do that?

Thanks in advance!
 
G

Gérard Ducouret

Hi,
SelectAll
For Each oTask In ActiveSelection.Tasks
.....

Gérard Ducouret
 
Top