Use `COUNT` to count cells that contain numbers: `=COUNT(A1:A10)`
Use `COUNTA` to count non-empty cells: `=COUNTA(A1:A10)`
Use `COUNTBLANK` to count empty cells: `=COUNTBLANK(A1:A10)`
Use `COUNTIF` to count cells that meet one condition: `=COUNTIF(A1:A10,”>10″)`
Use `COUNTIFS` to count cells that meet multiple conditions: `=COUNTIFS(A1:A10,”>10″,B1:B10,”Yes”)`
Enter the formula in the cell where you want the result
Replace the range with your data range
Replace the criteria with the condition you want to count
Press Enter to get the result
Use AutoSum and select Count Numbers to quickly count numeric cells
Use the status bar to see a quick count of selected cells
Use `COUNT` for dates and numbers stored as numeric values
Use `COUNT` only for numeric cells, not text
Use `COUNTIF` with wildcards to count text patterns: `=COUNTIF(A1:A10,”*apple*”)`
