Re: Formula - Project SV?
- From: "Jack Dahlgren" <jack@xxxxxxxx>
- Date: Mon, 12 Feb 2007 09:03:24 -0800
Sorry,
Was typing without thinking. It should be:
ActiveProject.ProjectSummaryTask.SV
-Jack
"G Lykos" <GLykos@xxxxxxxxxxxxxx> wrote in message
news:eVCLU9iTHHA.4744@xxxxxxxxxxxxxxxxxxxxxxx
Thanks, Jack. Yes, a custom-field formula was the idea, for simplicity
and
automation. I had the feeling from having read your posts on this subject
that a project-level SV is not available to a formula but thought I would
ask. A VBA solution is a fall-back alternative.
What specifically is ActiveProject.Tasks(1) in relation to the entire
project - (Project Summary) Task ID 0?
George
"Jack Dahlgren" <jack@xxxxxxxx> wrote in message
news:O2cu4IhTHHA.3440@xxxxxxxxxxxxxxxxxxxxxxx
I don't think that will give you very meaningful results...task
It is not possible in a custom field formula either as Project SV is not
available to that formula.
You could use a visual basic macro like this to write the value into the
text1 field though:
Sub svthing()
For Each Task In ActiveProject.Tasks
If Not Task Is Nothing Then
Task.Text1 = (Task.SV / ActiveProject.Tasks(1).SV) * 100 & "%"
End If
Next Task
End Sub
-Jack Dahlgren
More about programming MS Project at http://zo-d.com/blog
"G Lykos" <GLykos@xxxxxxxxxxxxxx> wrote in message
news:%23sG%23EogTHHA.4744@xxxxxxxxxxxxxxxxxxxxxxx
Greetings! Am interested in calculating the SV contribution of each
/expressed as a percentage. Formula would look something like {Task SV}
{Project SV} * 100.
Task SV is captured as [SV]. How about Project SV?
Thanks,
George
.
- Follow-Ups:
- Re: Formula - Project SV?
- From: G Lykos
- Re: Formula - Project SV?
- References:
- Formula - Project SV?
- From: G Lykos
- Re: Formula - Project SV?
- From: Jack Dahlgren
- Re: Formula - Project SV?
- From: G Lykos
- Formula - Project SV?
- Prev by Date: Re: Fixed cost column
- Next by Date: Re: Formula - Project SV?
- Previous by thread: Re: Formula - Project SV?
- Next by thread: Re: Formula - Project SV?
- Index(es):
Relevant Pages
|