J
John
I asked this question before and want to continue this train of thought. I
now want to add another complication. I want to average the CPI of my
projects based on phase and division.
My data set will look like this:
ProjectName CPI Phase Division
Project1 .9 Active AppDev
Project2 .6 Active AppDev
Project3 1.1 Active AppDev
Project4 .78 Active Comm
Below is the previous post and reply on this topic on Feb 10. But I don't
know how to do the above.
Thanks
Hi,
Lets say the CPI is in range B2:B4 and the phase is in
range C2:C4 you can use either of these formulas:
=SUMIF(C2:C4,"Active",B2:B4)/COUNTIF(C2:C4,"Active")
entered normally
or
=AVERAGE(IF(C2:C4="Active",B2:B4)) entered with Ctrl
+Shift+enter as this is an array formula.
Thanks
Govind.
now want to add another complication. I want to average the CPI of my
projects based on phase and division.
My data set will look like this:
ProjectName CPI Phase Division
Project1 .9 Active AppDev
Project2 .6 Active AppDev
Project3 1.1 Active AppDev
Project4 .78 Active Comm
Below is the previous post and reply on this topic on Feb 10. But I don't
know how to do the above.
Thanks
Hi,
Lets say the CPI is in range B2:B4 and the phase is in
range C2:C4 you can use either of these formulas:
=SUMIF(C2:C4,"Active",B2:B4)/COUNTIF(C2:C4,"Active")
entered normally
or
=AVERAGE(IF(C2:C4="Active",B2:B4)) entered with Ctrl
+Shift+enter as this is an array formula.
Thanks
Govind.