Ureader.com  
Microsoft software help and Community
   home   |   control panel login   |   archive   |  
 
other
informationbridge
office.intranets
office.misc
office.setup
office.xml
officeupdate
onenote
photodraw.discussion
powerpoint
producer
proj.standard&server
project
project.developer
project.pro_and_serve
project.server
project.vba
project2000
publisher
publisher.prepress
publisher.programming
publisher.webdesign
visio
visio.createshapes
visio.database.modeling
visio.dev.diagrams
visio.dev.shapesheet
visio.dev.vba
visio.dev.vc
visio.developer
visio.general
visio.installation
visio.printing
visio.software.modeling
visio.troubleshoot
  
 
date: Tue, 2 Sep 2008 03:46:23 -0700 (PDT),    group: microsoft.public.project.developer        back       


rollup to the summary tasks with evaluate also the summary tasks   
Hi,

I've created a basic code to detect expressions in tasks' names. I
would need now to do the rollup to the summary tasks, but the problem
is that I also wanted to evaluate/detect the expressions in the
summary tasks.

Are you aware if there's the possibility to do the rollup in vba, so
that I can also test the summary tasks?

I don't Know use rollup in VBA. Thanks

My code:

**************************
Dim tsk As Task

For Each tsk In ActiveProject.Tasks

    If tsk.Name Like "*work*" Then

        tsk.Flag1 = False
    Else
        tsk.Flag1 = True

    End If

Next tsk
***************************
date: Tue, 2 Sep 2008 03:46:23 -0700 (PDT)   author:   Hernandezz

Re: rollup to the summary tasks with evaluate also the summary tasks   
Hi,

I don't know what you want to rollup to the summary task...
By all means, for each task also works for summary tasks, so that is 
covered.
And if/when you want to access a summary task fom a child task, this is how 
to address it:
tsk.outlinepartent

Hope this helps,

-- 
Jan De Messemaeker
Microsoft Project Most Valuable Professional
+32 495 300 620
For availability check:
http://users.online.be/prom-ade/Calendar.pdf
"Hernandezz"  wrote in message 
news:2bbb9e84-cb9b-4daf-bf35-f1dfe37212fd@i76g2000hsf.googlegroups.com...
> Hi,
>
> I've created a basic code to detect expressions in tasks' names. I
> would need now to do the rollup to the summary tasks, but the problem
> is that I also wanted to evaluate/detect the expressions in the
> summary tasks.
>
> Are you aware if there's the possibility to do the rollup in vba, so
> that I can also test the summary tasks?
>
> I don't Know use rollup in VBA. Thanks
>
> My code:
>
> **************************
> Dim tsk As Task
>
> For Each tsk In ActiveProject.Tasks
>
>    If tsk.Name Like "*work*" Then
>
>        tsk.Flag1 = False
>    Else
>        tsk.Flag1 = True
>
>    End If
>
> Next tsk
> ***************************
date: Tue, 2 Sep 2008 17:22:03 +0200   author:   Jan De Messemaeker

Re: rollup to the summary tasks with evaluate also the summary tasks   
In article <u46xl#QDJHA.4176@TK2MSFTNGP04.phx.gbl>,
 "Jan De Messemaeker"  wrote:

> Hi,
> 
> I don't know what you want to rollup to the summary task...
> By all means, for each task also works for summary tasks, so that is 
> covered.
> And if/when you want to access a summary task fom a child task, this is how 
> to address it:
> tsk.outlinepartent
> 
> Hope this helps,
> 
> -- 
> Jan De Messemaeker
>
Jan,
I think you meant to say,
tsk.outlineparent

John
> "Hernandezz"  wrote in message 
> news:2bbb9e84-cb9b-4daf-bf35-f1dfe37212fd@i76g2000hsf.googlegroups.com...
> > Hi,
> >
> > I've created a basic code to detect expressions in tasks' names. I
> > would need now to do the rollup to the summary tasks, but the problem
> > is that I also wanted to evaluate/detect the expressions in the
> > summary tasks.
> >
> > Are you aware if there's the possibility to do the rollup in vba, so
> > that I can also test the summary tasks?
> >
> > I don't Know use rollup in VBA. Thanks
> >
> > My code:
> >
> > **************************
> > Dim tsk As Task
> >
> > For Each tsk In ActiveProject.Tasks
> >
> >    If tsk.Name Like "*work*" Then
> >
> >        tsk.Flag1 = False
> >    Else
> >        tsk.Flag1 = True
> >
> >    End If
> >
> > Next tsk
> > ***************************
date: Wed, 03 Sep 2008 07:59:28 -0700   author:   John

Re: rollup to the summary tasks with evaluate also the summary tasks   
Hi John

I seem to have a patent (parent? Partent?) on typos..

-- 
Jan De Messemaeker
Microsoft Project Most Valuable Professional
+32 495 300 620
For availability check:
http://users.online.be/prom-ade/Calendar.pdf
"John"  wrote in message 
news:mjensen-3F47BA.07592803092008@msnews.microsoft.com...
> In article <u46xl#QDJHA.4176@TK2MSFTNGP04.phx.gbl>,
> "Jan De Messemaeker"  wrote:
>
>> Hi,
>>
>> I don't know what you want to rollup to the summary task...
>> By all means, for each task also works for summary tasks, so that is
>> covered.
>> And if/when you want to access a summary task fom a child task, this is 
>> how
>> to address it:
>> tsk.outlinepartent
>>
>> Hope this helps,
>>
>> -- 
>> Jan De Messemaeker
>>
> Jan,
> I think you meant to say,
> tsk.outlineparent
>
> John
>> "Hernandezz"  wrote in message
>> news:2bbb9e84-cb9b-4daf-bf35-f1dfe37212fd@i76g2000hsf.googlegroups.com...
>> > Hi,
>> >
>> > I've created a basic code to detect expressions in tasks' names. I
>> > would need now to do the rollup to the summary tasks, but the problem
>> > is that I also wanted to evaluate/detect the expressions in the
>> > summary tasks.
>> >
>> > Are you aware if there's the possibility to do the rollup in vba, so
>> > that I can also test the summary tasks?
>> >
>> > I don't Know use rollup in VBA. Thanks
>> >
>> > My code:
>> >
>> > **************************
>> > Dim tsk As Task
>> >
>> > For Each tsk In ActiveProject.Tasks
>> >
>> >    If tsk.Name Like "*work*" Then
>> >
>> >        tsk.Flag1 = False
>> >    Else
>> >        tsk.Flag1 = True
>> >
>> >    End If
>> >
>> > Next tsk
>> > ***************************
date: Wed, 3 Sep 2008 18:27:38 +0200   author:   Jan De Messemaeker

Google
 
Web ureader.com


    COPYRIGHT 2007, YARDI TECHNOLOGY LIMITED, ALL RIGHT RESERVE  |   contact us