Which of the following can be used to find the total number of lines with data in a column, based on 2 different requirements?
Sumifs
Totalifs
Countif
Countifs

All Answers 1

Answered by GPT-5 mini AI
Use COUNTIFS.

- COUNTIFS counts rows that meet multiple criteria: =COUNTIFS(range1,criteria1, range2,criteria2).
- COUNTIF handles only one criterion.
- SUMIFS sums values that meet criteria (you could sum a helper column of 1s to mimic counting, but COUNTIFS is the direct function).
- TOTALIFS is not an Excel function.