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

Data Analysis

  • Filter Data Based on Date in Excel
  • How to Create One and Two Variable Data Tables in Excel
  • How to count table rows in Excel
  • How To Perform and Interpret Regression Analysis in Excel
  • Subtotal function in Excel

References

  • How to use Excel TRANSPOSE Function
  • Convert text string to valid reference in Excel using Indirect function
  • How to use Excel OFFSET function
  • How to use Excel ROWS Function
  • Extract all partial matches in Excel

Data Validations

  • Excel Data validation allow weekday only
  • Excel Data validation allow uppercase only
  • Excel Data validation whole percentage only
  • How To Create Drop-down List in Excel
  • Excel Data validation date in specific year

Count numbers third digit equals 3 in Excel

by

This tutorial shows how to Count numbers third digit equals 3 in Excel using the example below;

Formula

=SUMPRODUCT(--(MID(range,3,1)="3"))

Explanation

To count numbers where the third digit equals 3, you can use a formula based on the SUMPRODUCT and MID functions. In the example shown, the formula in E5 is:

=SUMPRODUCT(--(MID(B5:B12,3,1)="3"))

How this formula works

To get the third character from a string in A1, you can use the MID function like this:

=MID(A1,3,1)

The first argument is a cell reference, the second argument specifies the start number, and the third argument indicates number of characters.

Worked Example:   How to extract substring in Excel

If you give the MID function a range of cells for the first argument, you’ll get back an array of results. In the example shown, this expression:

MID(B5:B12,3,1)

returns an array like this:

{"6";"6";"3";"5";"3";"0";"3";"7"}

This array contains the third digit from each cell in the range B5:B12. Notice the MID function has automatically converted numeric values in the range to text strings and returned the third character as a text value.

Worked Example:   Sum 2d range with multiple criteria in Excel

When we compare this array using =”3″, we get an array like this:

{FALSE;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;FALSE}

We use the double negative to coerce the TRUE and FALSE values to 1 and zero respectively, which returns:

{0;0;1;0;1;0;1;0}

Finally, with only one array to work with, the SUMPRODUCT function sums the items in the array and returns the total, 3.

Post navigation

Previous Post:

44 Practical Excel IF function Examples

Next Post:

Large with criteria 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

  • IFERROR function: Description, Usage, Syntax, Examples and Explanation
  • OR function Examples in Excel
  • XOR function: Description, Usage, Syntax, Examples and Explanation
  • Check multiple cells are equal in Excel
  • How to use Excel XOR Function

Date Time

  • YEARFRAC function: Description, Usage, Syntax, Examples and Explanation
  • Roll back weekday to Friday base on a particular date in Excel
  • Count day of week between dates in Excel
  • Get days, months, and years between dates in Excel
  • How to calculate nth day of week in month in Excel

Grouping

  • Group numbers with VLOOKUP in Excel
  • Group arbitrary text values in Excel
  • Map inputs to arbitrary values in Excel
  • Categorize text with keywords in Excel
  • Map text to numbers in Excel

General

  • Transpose: Switch ‘Rows to Columns’ or ‘Columns to Rows’ in Excel
  • Excel Default Templates
  • Excel Ribbon Quick Overview For Beginners
  • Check if multiple cells have same value with case sensitive in Excel
  • Basic numeric sort formula in Excel
© 2023 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning