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

Data Analysis

  • How to count table rows in Excel
  • How to do a t-Test in Excel?
  • How to create a Histogram in Excel
  • How to Create Gantt Chart in Excel
  • How To Create Pareto Chart in Excel

References

  • Get nth match with INDEX / MATCH in Excel
  • Offset in Excel
  • How to use Excel INDIRECT Function
  • Convert text string to valid reference in Excel using Indirect function
  • How to use Excel OFFSET function

Data Validations

  • Excel Data validation allow weekday only
  • How To Create Drop-down List in Excel
  • Excel Data validation exists in list
  • Excel Data validation must begin with
  • Excel Data validation number multiple 100

Count paired items in listed combinations in Excel

by

This tutorial shows how to Count paired items in listed combinations in Excel using the example below;

Formula

=COUNTIFS(range,”*”&$item1&”*”,range,”*”&item2&”*”)

Explanation

To build a summary table with a count of paired items that appear in a list of existing combinations, you can use a helper column and a formula based on the COUNTIFS function. In the example shown the formula in cell H5 is:

=IF($G5=H$4,"-",COUNTIFS(helper,"*"&$G5&"*",helper,"*"&H$4&"*"))

where helper is the named range E5:E24.

Note: this formula assumes items don’t repeat in a given combination (i.e. AAB, EFE are not valid combinations).

How this formula works

We want to count how often items in columns B, C, and D appear together. For example, how often A appears with C, B appears with F, G appears with D, and so on. This would seem like a perfect use of COUNTIFS, but if we try to add criteria looking for 2 items across 3 columns, it isn’t going to work.

A simple workaround is to join all items together in a single cell, then use COUNTIFS with a wildcard to count items. We do that with a helper column (E) that joins items in columns B, C, and D using the CONCAT function like this:

=CONCAT(B5:D5)

In older versions of Excel, you can use a formula like this:

=B5&C5&D5

Because repeated items are not allowed in a combination, the first part of the formula excludes matching items. If the two items are the same, the formula returns a hyphen or dash as text:

=IF($G5=H$4,"-"

If items are different, a COUNTIFS function is run:

COUNTIFS(helper,"*"&$G5&"*",helper,"*"&H$4&"*")

COUNTIFS is configured to count “pairs” of items. Only when the item in column G and the corresponding item from row 4 appear together in a cell is the pair counted. A wildcard (*) is concatenated to both sides of the item to ensure a match will be counted no matter where it appears in the cell.

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

  • Excel If, Nested If, And/Or Criteria Examples
  • IFERROR function: Description, Usage, Syntax, Examples and Explanation
  • How to use Excel XOR Function
  • IF function: Description, Usage, Syntax, Examples and Explanation
  • IFNA function: Description, Usage, Syntax, Examples and Explanation

Date Time

  • Convert date string to date time in Excel
  • Add workdays no weekends in Excel
  • How to calculate Day of the Year in Excel
  • Extract time from a date and time in Excel
  • Display Date is same month in Excel

Grouping

  • How to randomly assign people to groups in Excel
  • Group times into unequal buckets in Excel
  • Group numbers with VLOOKUP in Excel
  • Map text to numbers in Excel
  • Map inputs to arbitrary values in Excel

General

  • How to get random value from list or table in Excel
  • How to get original number from percent change in Excel
  • How to get amount with percentage in Excel
  • How to get Excel workbook path only
  • Count cells that do not contain many strings in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning