
Originally Posted by
beaunydal
=SUMPRODUCT(--(Sheet1!A3:A9="Completed")+--(Sheet1!A3:A9="Not Completed - At Fault"))
Beau Nydal, just an FYI but the double unary coercion in the above is not required given the addition taking place in the OR.
The below will do the same but with fewer operations:
=SUMPRODUCT((Sheet1!A3:A9="Completed")+(Sheet1!A3:A9="Not Completed - At Fault"))
That said I think the COUNTIF approach is proabable the more logical given it's lightweight nature... if the terms being searched for are not variable you could use an inline array construct if preferred
=SUM(COUNTIF(Sheet1!A3:A9,{"Completed","Not Completed - At Fault"}))
Very much horses for courses - the above syntax is shorter (esp. when there are a number of terms) however it is not very flexible should you want to quickly adapt the terms themselves (ie via cell links etc)
Bookmarks