Skip to main content

Count numbers that begin with a specific number in Excel

To count number of cells containing numbers that begin with a specific number(s) in Excel, you can apply the combination of the SUMPRODUCT and LEFT functions to get it done.


How to count numbers that begin with a specific number in Excel?

As the below screenshot shown, there is a number list in column B, and you want to count the total numbers that begin with number “39”, in this case, the following formula can do you a favor.

Generic Formula

=SUMPRODUCT(--(LEFT(range,n)="number"))

Arguments

Range: The range of cells contain the numbers to match.
Number: The specific number to count numbers based on.
N: The length of number value.

How to use this formula?

1. Select a blank cell to place the result.

2. Enter the below formula into it and press the Enter key to get the result.

=SUMPRODUCT(--(LEFT(B3:B11,2)="39"))

Note: In the formula, B3:B11 is the column range contains the numbers you will count, 39 is the given number you will count numbers based on, the number 2 represents the number of characters which to be counted. You can change them as you need.

How this formula works?

=SUMPRODUCT(--(LEFT(B3:B11,2)="39"))

  • LEFT(B3:B11,2): The LEFT function extracts the first two digits from the left side of numbers in range B3:B11 and returns an array like this: {"39";"49";"25";"39";"49";"58";"39";"49";"39"}="39".
  • {"39";"49";"25";"39";"49";"58";"39";"49";"39"}="39": Here compare each number in the array with “39”, if match, returns TRUE, otherwise, returns FALSE. You will get an array as {TRUE;FALSE;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;TRUE}
  • --({TRUE;FALSE;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;TRUE}): These two minus signs convert “TRUE” into 1 and “FALSE” into 0. Here you will get a new array as {1;0;0;1;0;0;1;0;1}.
  • =SUMPRODUCT{1;0;0;1;0;0;1;0;1}: The SUMPRODUCT function sums all numbers in the array and returns the final result as 4.

Related functions

Excel SUMPRODUCT function
The Excel SUMPRODUCT function can be used to multiply two or more columns or arrays together, and then get the sum of products.

Excel LEFT function
The Excel LEFT function extracts the given number of characters from the left side of a supplied string.


Related formulas

Count occurrences of particular text in entire Excel workbook
This article is going to demonstrate a formula based on the SUMPRODUCT, COUNTIF and INDIRECT function to count occurrences of particular text in entire workbook.

Count multiple criteria with NOT logic in Excel
This article is going to show you how to count number of cells with multiple criteria with NOT logic in Excel.

Count or sum only whole numbers in Excel
This post provides two formulas based on the SUMPRODUCT function and the MOD function to help you count and sum only whole numbers in a range of cells in Excel.

Count numbers where the nth digit equals to a given number
This tutorial provides a formula based on the SUMPRODUCT and the MID function to count numbers where the nth digit equals to a given number in Excel.


The Best Office Productivity Tools

Kutools for Excel - Helps You To Stand Out From Crowd

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates  |  Delete Blank Rows  |  Combine Columns or Cells without Losing Data  |  Round without Formula ...
Super VLookup: Multiple Criteria  |  Multiple Value  |  Across Multi-Sheets  |  Fuzzy Lookup...
Adv. Drop-down List: Easy Drop Down List  |  Dependent Drop Down List  |  Multi-select Drop Down List...
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  Compare Columns to Select Same & Different Cells ...
Featured Features: Grid Focus  |  Design View  |  Big Formula Bar  |  Workbook & Sheet Manager | Resource Library (Auto Text)  |  Date Picker  |  Combine Worksheets  |  Encrypt/Decrypt Cells  |  Send Emails by List  |  Super Filter  |  Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters ...)  |  50+ Chart Types (Gantt Chart ...)  |  40+ Practical Formulas (Calculate age based on birthday ...)  |  19 Insertion Tools (Insert QR Code, Insert Picture from Path ...)  |  12 Conversion Tools (Numbers to Words, Currency Conversion ...)  |  7 Merge & Split Tools (Advanced Combine Rows, Split Excel Cells ...)  |  ... and more

Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need is Just A Click Away...

Description


Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)

  • One second to switch between dozens of open documents!
  • Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
  • Increases your productivity by 50% when viewing and editing multiple documents.
  • Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Edge and Firefox.
Comments (0)
No ratings yet. Be the first to rate!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations