Satya's blog

Monday, August 31, 2009

EMI Calculators

Thursday, August 20, 2009

MS Project - MVP FAQs

Is the project is completely baselined?

You know that the project is baselined, but not sure whether it baselined it complete or not. In such case, how do we know whether it is complete or partial.

Use the following formula for flag field:
1. IIf([Baseline Start]=ProjDateValue("NA"),No,Yes)
2. Set the summary rollup option to 'AND'

If rolledup value is 'Yes' for the root task then it is completely baseline otherwise it is partially baselined.

Labels:

Wednesday, August 19, 2009

Calculating days required for an ongoing task

Eg: For a 4 day task, 50% should be completed on day2. if it takes 3 days to complete 50%, then it takes 3 days to complete the remaining work assuming the pace of work is same.
Then apply the following formula for projection calculation:
Projection (Days Required) = IIf([Physical % Complete]>0 And [Physical % Complete]<100,((100-[physical>

Labels:

Calculating Schedule Deviation in MPP

Schedule Deviation = (Finish-Baseline Finish) / (Baseline Finish-Baseline Start + 1)
Create 3 custom number fields.
Numerator : Number1 Field = ProjDateDiff([Baseline Finish],[Finish])/[Minutes Per Day]
Denominator : Number2 Field = ProjDateDiff([Baseline Start],[Baseline Finish])/[Minutes Per Day]+1
Schedule Deviation ( N/D*100 ): Number3 Field = IIf([Number2]<>0,[Number1]/[Number2]*100,0)

Labels:

Planned percent complete calculation in MPP

Create a Text field. Apply the following formula to calculate Planned % Complete:
str(IIf([Status Date]<[Start],"0",IIf([Status Date]>[Finish],"1",ProjDateDiff([Start],[Status Date])/[Duration]))*100)+"%"
Note: Above formula may not work properly at summary task level.

Labels:

MS Project Discussion Group

Tuesday, August 18, 2009

Planned percent complete vs percent complete in MS Project

Task is baselined or not - its roll up

Step1: Try creating a flag field with the following formula: IIf([Baseline Start]=ProjDateValue("NA"),No,Yes)

Step2: Set the summary rollup option to "Or"

Labels: