Forum Discussion

RogerShack's avatar
RogerShack
Copper Contributor
Sep 26, 2022
Solved

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...
  • JMB17's avatar
    Sep 26, 2022
    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"))

Resources