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

Data Analysis

  • How to create running total in an Excel Table
  • How to add Trendline to a chart in Excel
  • Managing Conditional Formatting Rules in Excel
  • Get column index in Excel Table
  • Conditional Formatting New Rule with Formulas in Excel

References

  • How to get relative row numbers in a range in Excel
  • Count rows with at least n matching values
  • Perform case-sensitive Lookup in Excel
  • Count unique text values with criteria
  • Lookup entire row in Excel

Data Validations

  • Excel Data validation must begin with
  • How To Create Drop-down List in Excel
  • Excel Data validation require unique number
  • Excel Data validation allow uppercase only
  • Prevent invalid data entering in specific cells

Count numbers that begin with in Excel

by

This tutorial shows how to Count numbers that begin with in Excel using the example below;

Formula

=SUMPRODUCT(--(LEFT(range,chars)="xx"))

Explanation

To count numbers in a range that begin with specific numbers, you can use a formula based on the SUMPRODUCT function and LEFT functions.

In the example shown, the formula in E6 is:

=SUMPRODUCT(--(LEFT(B5:B11,2)="25"))

How this formula works

Inside SUMPRODUCT, we use the LEFT function on the range of numbers like this:

LEFT(B5:B11,2)

This creates an array of results like this:

{"25";"25";"35";"45";"25";"45";"25"}

We then compare each value to “25” to force a TRUE or FALSE result. Note that LEFT automatically converts the numbers to text, so we use the text value “25” for the comparison. The result is an array of TRUE and FALSE values:

=SUMPRODUCT(--({TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;TRUE}))

Next, we use a double negative co coerce TRUE FALSE values to 1 and zero, which creates a numeric array:

=SUMPRODUCT({1;1;0;0;1;0;1})

The SUMPRODUCT function then simply sums the elements in the array and returns 4.

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

  • How to return blank in place of #DIV/0! error in Excel
  • IF, AND, OR and NOT Functions Examples in Excel
  • Not Equal To ‘<>‘ operator in Excel
  • OR function: Description, Usage, Syntax, Examples and Explanation
  • Extract multiple matches into separate rows in Excel

Date Time

  • Add days to date in Excel
  • Find Last Day of the Month in Excel
  • How to calculate working days left in month in Excel
  • Check If Two Dates are same month in Excel
  • Display Days in month in Excel

Grouping

  • How to randomly assign data to groups in Excel
  • Group arbitrary text values in Excel
  • How to randomly assign people to groups in Excel
  • Group times into unequal buckets in Excel
  • If cell contains one of many things in Excel

General

  • How to create dynamic named range with INDEX in Excel
  • Delete Blank Rows at Once in Excel
  • How to generate random number between two numbers in Excel
  • Print Excel Sheet In Landscape Or Portrait
  • Common Errors in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning