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

Data Analysis

  • How to calculate average last N values in a table in Excel
  • How To Compare Two Lists in Excel
  • How to Create Column Chart in Excel
  • Conditional Formatting Color Scales Examples in Excel
  • How to combine 2 or more chart types in a single chart in Excel

References

  • Find Closest Match in Excel Using INDEX, MATCH, ABS and MIN functions
  • Extract data with helper column in Excel
  • How to retrieve first match between two ranges in Excel
  • Complete List of Excel Lookup and Reference Functions, References and Examples
  • Left Lookup in Excel

Data Validations

  • Excel Data validation with conditional list
  • Excel Data validation exists in list
  • Excel Data validation whole percentage only
  • Excel Data validation number multiple 100
  • Data validation must not exist in list

Sum if cell contains text in another cell in Excel

by

This tutorial shows how to Sum if cell contains text in another cell in Excel using the example below;

Formula

=SUMIF(range,"*"&A1&"*",sum_range)

Explanation

To sum if cells contain specific text in another cell, you can use the SUMIF function with a wildcard and concatenation. In the example shown, cell G6 contains this formula:

=SUMIF(C5:C11,"*"&F6&"*",D5:D11)

This formula sums amounts for items in column C that contain “hoodie”, anywhere in the cell.

How the formula works

The SUMIF function supports wildcards. An asterisk (*) means “zero or more characters”, while a question mark (?) means “any one character”.

Wildcards allow you to create criteria such as “begins with”, “ends with”, “contains 3 characters” and so on.

So, for example, you can use “*hat*” to match the text “hat” anywhere in a cell, or “a*” to match values beginning with the letter “a”.

In this case, we want to match the text in F6. We can’t write the criteria like “*F6*” because that will match only the literal text “F6”.

Instead, we need to use the concatenation operator (&) to join a reference to F6 to asterisks (*):

"*"&F6&"*"

When Excel evaluates this argument inside the SUMIF function, it will “see” “*hoodie*” as the criteria:

=SUMIF(C5:C11,"*hoodie*",D5:D11)

SUMIF then returns the sum for items that contain “hoodie”, which is $27.00 in the example shown.

Note that SUMIF is not case-sensitive.

Alternative with SUMIFS

You can also use the SUMIFS function. SUMIFS can handle multiple criteria, and the order of the arguments is different from SUMIF. The equivalent SUMIFS formula is:

=SUMIFS(D5:D11,C5:C11,"*"&F6&"*")

Notice the sum range always comes first in the SUMIFS function.

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

  • Return blank if in Excel
  • IFS function: Description, Usage, Syntax, Examples and Explanation
  • How to return blank in place of #DIV/0! error in Excel
  • SWITCH function: Description, Usage, Syntax, Examples and Explanation
  • Not Equal To ‘<>‘ operator in Excel

Date Time

  • EDATE function: Description, Usage, Syntax, Examples and Explanation
  • Next biweekly payday from date in Excel
  • TIMEVALUE function: Description, Usage, Syntax, Examples and Explanation
  • How to show last updated date stamp in Excel
  • Generate series of dates by weekends in Excel

Grouping

  • If cell contains one of many things in Excel
  • Group numbers at uneven intervals in Excel
  • Group times into unequal buckets in Excel
  • Group times into 3 hour buckets in Excel
  • Calculate conditional mode with criteria in Excel

General

  • Basic error trapping example in Excel
  • How to add sequential row numbers to a set of data in Excel
  • Count cells that do not contain errors in Excel
  • How to calculate percentage discount in Excel
  • Mark Workbook as Final in Excel
© 2026 xlsoffice . All Right Reserved. | Teal Smiles | Abbreviations And Their Meaning