EDITED
I am trying to count all values in column D/F when column B is "Started"/"Configured". This is what my data looks like.
B D F
Started BARB1 BARB1
Started BARB2
BARB3 BARB2
Configured BARB4
Started
I have tried the following formulas; (CountIf, SumProduct) But it just seems to count them in column B?
=COUNTIF($B$2:$B$1800;B2="Started")
=SUMPRODUCT(($B$2:$B$1800="Started")*($D$2:$CD$1800<>""))