Something like:
=SUMPRODUCT(--('ACTION PLAN'!E13:E1000="PT"),--('ACTION PLAN'!I13:I1000="OPS"),--('ACTION PLAN'!M13:M1000>'Other Sheet'!$X$1),--ISNUMBER('ACTION PLAN'!M13:M1000))
where 'Other Sheet'!$X$1 is the location of the Start date.... if you want to add a to date:
=SUMPRODUCT(--('ACTION PLAN'!E13:E1000="PT"),--('ACTION PLAN'!I13:I1000="OPS"),--('ACTION PLAN'!M13:M1000>'Other Sheet'!$X$1),--('ACTION PLAN'!M13:M1000<'Other Sheet'!$Y$1),--ISNUMBER('ACTION PLAN'!M13:M1000))
where 'Other Sheet'!$Y$1 contains end date.
Note: the search will not actually include those dates in the cells... if you want to include, then you need to change < to <= and > to >=
Bookmarks