Home > Back-end >  Excel Count Formula
Excel Count Formula

Time:07-07

I have excel data file like:

Excel Data File

How can I count Yes/No Row # 2 to 6 then Row # 7 to 11 and Row # 12 to 20?

Pls. suggest if possible in excel.

CodePudding user response:

Use the function COUNTIF instead of COUNT

COUNTIF basically returns a count value of the cells that meet a certain criterion provided by you

Syntax: =COUNTIF(Where do you want to look?, What do you want to look for?)

Eg) =COUNTIF(C2:C6,"Yes")

If you need further help, you can look it up in the Microsoft documentation, link below: enter image description here

  • Related