Skip to content
Free Excel Tutorials
  • Home
  • Excel For Beginners
  • Excel Intermediate
  • Advanced Excel For Experts

Data Analysis

  • How to Use Solver Tool in Excel
  • Conditional Formatting New Rule with Formulas in Excel
  • How To Insert and Customize Sparklines in Excel
  • How to conditionally sum numeric data in an Excel table using SUMIFS
  • Number and Text Filters Examples in Excel

References

  • How to get relative row numbers in a range in Excel
  • INDEX function: Description, Usage, Syntax, Examples and Explanation
  • Last row number in range
  • How to create dynamic named range with OFFSET in Excel
  • Extract data with helper column in Excel

Data Validations

  • How To Create Drop-down List in Excel
  • Data validation must not exist in list
  • Excel Data validation specific characters only
  • Excel Data validation require unique number
  • Prevent invalid data entering in specific cells

Count numbers by range with COUNTIFS in Excel

by

This tutorial shows how to Count numbers by range with COUNTIFS in Excel using the example below;

Formula

=COUNTIFS(range,">=low",range,"<=high")

Explanation

To count numeric data by range or grouping, you can build a summary table and use COUNTIFS to count values at each threshold.

In the example show, we have a list of names and ages and are using the COUNTIFs function to generate a count of ages into 6 brackets. The formula in cell F5 is:

=COUNTIFS(ages,">=20",ages,"<=29")

How this formula works

The named range “ages” refers to C5:C304.

The COUNTIFS function lets you count values that meet multiple criteria with an AND relationship (i.e. all criterial must be true).

In this case, we want to group the data by age range into 10-year brackets, so we use COUNTIFS as follows in column F:

=COUNTIFS(ages,">=20",ages,"<=29") // 20-29
=COUNTIFS(ages,">=30",ages,"<=39") // 30-39
=COUNTIFS(ages,">=40",ages,"<=49") // 40-49

For the final bracket, 70+, we only use one criteria:

=COUNTIFS(ages,">=70") // 70+

Dynamic ranges

To expose ranges values on the worksheet where they can be easily changes, you can join references to logical operators with concatenation like this:

=COUNTIFS(ages,">="$A1,ages,"<="&B1)

This formula counts greater than or equal to (>=) the value in A1 and less than or equal to (>=)the value in B1.

With a Pivot Table

Pivot Tables offer automatic grouping into equal size ranges.

Post navigation

Previous Post:

How to use Excel CHOOSE Function

Next Post:

Customize Ribbon In Excel

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Learn Basic Excel

Ribbon
Workbook
Worksheets
Format Cells
Find & Select
Sort & Filter
Templates
Print
Share
Protect
Keyboard Shortcuts

Categories

  • Charts
  • Data Analysis
  • Data Validation
  • Excel Functions
    • Cube Functions
    • Database Functions
    • Date and Time Functions
    • Engineering Functions
    • Financial Functions
    • Information Functions
    • Logical Functions
    • Lookup and Reference Functions
    • Math and Trig Functions
    • Statistical Functions
    • Text Functions
    • Web Functions
  • Excel VBA
  • Excel Video Tutorials
  • Formatting
  • Grouping
  • Others

Logical Functions

  • OR function Examples in Excel
  • TRUE function: Description, Usage, Syntax, Examples and Explanation
  • Extract multiple matches into separate rows in Excel
  • How to use Excel TRUE Function
  • IFS function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • Get day from date in Excel
  • How to get workdays between dates in Excel
  • How to get same date next month or previous month in Excel
  • Create date range from two dates in Excel
  • Add workdays no weekends in Excel

Grouping

  • Running count group by n size in Excel
  • Calculate conditional mode with criteria in Excel
  • Map inputs to arbitrary values in Excel
  • Categorize text with keywords in Excel
  • Group times into 3 hour buckets in Excel

General

  • Check if multiple cells have same value with case sensitive in Excel
  • Delete Blank Rows at Once in Excel
  • Index and match on multiple columns in Excel
  • Transpose: Switch ‘Rows to Columns’ or ‘Columns to Rows’ in Excel
  • Count cells that do not contain errors in Excel
© 2025 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning