Forum Discussion
RogerShack
Sep 26, 2022Copper Contributor
countif additons across multiple rows
looking for a more efficient method to calculate training compliance for a particualr city branch: I can limt to a particular city using COUNTIF(C:C,"Canberra") and then count the 'yes' returns fo...
- Sep 26, 2022You could try:
=SUM((C:C="Canberra")*(D:G="y"))
If you don't have dynamic array excel version:
=SUMPRODUCT((C:C="Canberra")*(D:G="y"))
JMB17
Sep 26, 2022Bronze Contributor
You could try:
=SUM((C:C="Canberra")*(D:G="y"))
If you don't have dynamic array excel version:
=SUMPRODUCT((C:C="Canberra")*(D:G="y"))
=SUM((C:C="Canberra")*(D:G="y"))
If you don't have dynamic array excel version:
=SUMPRODUCT((C:C="Canberra")*(D:G="y"))
RogerShack
Sep 26, 2022Copper Contributor
thanks JMB17 - option 2 worked perfectly. I had tried SUM but must not have the higher spec version of excel.
cheers
cheers