In Excel, “COUNTIF” counts the number of cells within a range that meet a single specified criteria. Click here to Read Full Tutorial
=COUNTIF(Range, criteria)
=COUNTIF
: In the formula bar, type =COUNTIF
.The COUNTIFS function in Excel counts the number of cells that meet multiple criteria across multiple ranges. Click here to Read Full Tutorial
=COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2]…)
=COUNTIFS(
.$B$2:$B$49
and set the condition to match H2
.$A$2:$A$49
, and add the condition ">"&H10-1
.$A$2:$A$49
again, and add "<"&I10+1
.=COUNTIFS(
.$C$2:$C$49
(“Country” column)."*"&H12&"*"
to check if H12
is found in $C$2:$C$49
.$B$2:$B$49
(“Sales Rep” column)."David"
to count rows where the name is "David"
.$C$2:$C$49
contains H12
.$B$2:$B$49
equals "David"
.=COUNTIFS(
.$C:$C
(the column to check)."Sing"&"*"
to count cells starting with “Sing”.=COUNTIFS(
.$C:$C
to check the entire “C” column."*"&"Pore"
to find any cell containing “Pore”.Learn an easy way to add pictures directly into a cell using the new IMAGE function! For a long time, adding pictures to Excel was tricky and time-consuming. But now, with the IMAGE function, you…
In this tutorial you’ll learn how to use the TEXTBEFORE function in Excel to quickly get the text before a specific character or word.In older versions of Excel, this was more difficult. You had to…
SEARCH function is used to find “position of character or text” in an available cell and this function is NOT case sensitive.
SUBSTITUTE function is used to substitute the existing old text to new text.
The Article of DATEVALUE explains how to use Excel functions to change text into dates and numbers into dates. It also shows how to convert text strings into dates without using formulas. You’ll also learn…
INDIRECT function is used to convert the text/string into cell reference. Function provides output as the value of that cell reference.