Prev: Range Vlookup
Next: Search Macro
From: CW on 21 Apr 2010 06:19 Hi, I am collating project details from multiple sources and need to report back how many projects are active in specific phases based on data such as in the table below: Projects Phase Version "Start Date W/c" "End Date W/c" A Prep Build Deliver a1 5-Apr 26-Apr Close a1 26-Apr 26-Jul B Prep Build Deliver b1 5-Apr 26-Apr Close b1 26-Apr 26-Jul C Prep Build c1 19-Apr 3-May Deliver c1 5-Apr 19-Apr Close c2 3-May 2-Aug D Prep d1 5-Apr 5-Jul Build d1 26-Jul 2-Aug Deliver d1 5-Jul 26-Jul Close d1 2-Aug 1-Nov If the start date has an entry it means that phase is active. In the table above I would need to count how many projects are at the 'Deliver' stage for example. I have tried a few options and the closed I have got is: =COUNTIF(Data1!B3:D18,"deliver") however this also counts cells which contain a null value, Could anyone help please?
From: Ashish Mathur on 21 Apr 2010 06:38 Hi, Ty this =sumproduct((Data1!B3:B18="Deliver")*(Data1!D3:D18<>"")) -- Regards, Ashish Mathur Microsoft Excel MVP www.ashishmathur.com "CW" <CW(a)discussions.microsoft.com> wrote in message news:48D24CE0-64C2-4978-ACD1-5AB6E73BDBD7(a)microsoft.com... > Hi, > > I am collating project details from multiple sources and need to report > back > how many projects are active in specific phases based on data such as in > the > table below: > Projects Phase Version "Start Date > W/c" "End Date > W/c" > A Prep > Build > Deliver a1 5-Apr 26-Apr > Close a1 26-Apr 26-Jul > B Prep > Build > Deliver b1 5-Apr 26-Apr > Close b1 26-Apr 26-Jul > C Prep > Build c1 19-Apr 3-May > Deliver c1 5-Apr 19-Apr > Close c2 3-May 2-Aug > D Prep d1 5-Apr 5-Jul > Build d1 26-Jul 2-Aug > Deliver d1 5-Jul 26-Jul > Close d1 2-Aug 1-Nov > > > If the start date has an entry it means that phase is active. In the > table > above I would need to count how many projects are at the 'Deliver' stage > for > example. > > I have tried a few options and the closed I have got is: > =COUNTIF(Data1!B3:D18,"deliver") however this also counts cells which > contain a null value, > > Could anyone help please?
|
Pages: 1 Prev: Range Vlookup Next: Search Macro |