![]() |
|
|
|||||||
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
select subtasks of a recurring task using VBA
i'm trying to write a macro that will iterate through the subtasks of a
recurring task and perform a certain action. how do i select the subtasks of a recurring task? what i have so far is this ... Dim tsk As Task Set tsk = ActiveSelection.Tasks(1) If Not tsk.Recurring Then Exit Sub 'how do i get the subtasks so I can iterate throu? |
|
|||
|
RE: select subtasks of a recurring task using VBA
oh, i found it: tsk.OutlineChildren
Cheers, JG "JoGo" wrote: > i'm trying to write a macro that will iterate through the subtasks of a > recurring task and perform a certain action. how do i select the subtasks of > a recurring task? what i have so far is this ... > > Dim tsk As Task > Set tsk = ActiveSelection.Tasks(1) > If Not tsk.Recurring Then Exit Sub > > 'how do i get the subtasks so I can iterate throu? > > |
![]() |
|
| Thread Tools | Search this Thread |
| Display Modes | |
|
|