Excel: If cell contains then count, sum, highlight, copy or delete

In our previous tutorial, we were looking at Excel If contains formulas that return some value to another column if a target cell contains a given value. Aside from that, what else can you do if a cell contains specific text or number? A variety of things such as counting or summing cells, highlighting, removing or copying entire rows, and more.

Excel 'Count if cell contains' formula examples

In Microsoft Excel, there are two functions to count cells based on their values, COUNTIF and COUNTIFS. These functions cover most, though not all, scenarios. The below examples will teach you how to choose an appropriate Count if cell contains formula for your particular task.

Count if cell contains any text

In situations when you want to count cells containing any text, use the asterisk wildcard character as the criteria in your COUNTIF formula:

COUNTIF(range,"*")

Or, use the SUMPRODUCT function in combination with ISTEXT:

SUMPRODUCT(--(ISTEX(range)))

In the second formula, the ISTEXT function evaluates each cell in the specified range and returns an array of TRUE (text) and FALSE (not text) values; the double unary operator (--) coerces TRUE and FALSE into 1's and 0's; and SUMPRODUCT adds up the numbers.

As shown in the screenshot below, both formulas yield the same result:

=COUNTIF(A2:A10,"*")

=SUMPRODUCT(--(ISTEXT(A2:A10)))
Formulas to count cells containing any text

You may also want to look at how to count non-empty cells in Excel.

Count if cell contains specific text

To count cells that contain specific text, use a simple COUNTIF formula like shown below, where range is the cells to check and text is the text string to search for or a reference to the cell containing the text string.

COUNTIF(range,"text")

For example, to count cells in the range A2:A10 that contain the word "dress", use this formula:

=COUNTIF(A2:A10, "dress")

Or the one shown in the screenshot:
Formula to count cells containing specific text

You can find more formulas examples here: How to count cells with text in Excel: any, specific, filtered cells.

Count if cell contains text (partial match)

To count cells that contain a certain substring, use the COUNTIF function with the asterisk wildcard character (*).

For example, to count how many cells in column A contain "dress" as part of their contents, use this formula:

=COUNTIF(A2:A10,"*dress*")

Or, type the desired text in some cell and concatenate that cell with the wildcard characters:

=COUNTIF(A2:A10,"*"&D1&"*")
Count cells that contain a specific substring (partial match)

For more information, please see: COUNTIF formulas with partial match.

Count if cell contains multiple substrings (AND logic)

To count cells with multiple conditions, use the COUNTIFS function. Excel COUNTIFS can handle up to 127 range/criteria pairs, and only cells that meet all of the specified conditions will be counted.

For example, to find out how many cells in column A contain "dress" AND "blue", use one of the following formulas:

=COUNTIFS(A2:A10,"*dress*", A2:A10,"*blue*")

Or

=COUNTIFS(A2:A10,"*"&D1&"*", A2:A10,"*"&D2&"*")
Count cells that meet both of the specified conditions.

Count if cell contains number

The formula to count cells with numbers is the simplest formula one could imagine:

COUNT(range)

Please keep in mind that the COUNT function in Excel counts cells containing any numeric value including numbers, dates and times, because in terms of Excel the last two are also numbers.

In our case, the formula goes as follows:

=COUNT(A2:A10)

To count cells that DO NOT contain numbers, use the SUMPRODUCT function together with ISNUMBER and NOT:

=SUMPRODUCT(--NOT(ISNUMBER(A2:A10)))
Formulas to count cells that contain or do not contain numbers

For more examples, see Excel formulas to count cells with certain text.

Sum if cell contains text

If you are looking for an Excel formula to find cells containing specific text and sum the corresponding values in another column, use the SUMIF function.

For example, to find out how many dresses are in stock, use this formula:

=SUMIF(A2:A10,"*dress*",B2:B10)

Where A2:A10 are the text values to check and B2:B10 are the numbers to sum.

Or, put the substring of interest in some cell (E1), and reference that cell in your formula, as shown in the screenshot below:
If a cell contains specific text, sum numbers in another column

To sum with multiple criteria, use the SUMIFS function.

For instance, to find out how many blue dresses are available, go with this formula:

=SUMIFS(B2:B10, A2:A10,"*dress*",A2:A10,"*blue*")

Or use this one:

=SUMIFS(B2:B10, A2:A10,"*"&E1&"*",A2:A10,"*"&E2&"*")

Where A2:A10 are the cells to check and B2:B10 are the cells to sum.
Sum cells with multiple criteria

Perform different calculations based on cell value

In our last tutorial, we discussed three different formulas to test multiple conditions and return different values depending on the results of those tests. And now, let's see how you can perform different calculations depending on the value in a target cell.

Supposing you have sales numbers in column B and want to calculate bonuses based on those numbers: if a sale is over $300, the bonus is 10%; for sales between $201 and $300 the bonus is 7%; for sales between $101 and $200 the bonus is 5%, and no bonus for under $100 sales.

To have it done, simply multiply the sales (B2) by a corresponding percentage. How do you know which percentage to multiply by? By testing different conditions with nested IFs:

=B2*IF(B2>=300,10%, IF(B2>=200,7%, IF(B2>=100,5%,0)))

In real-life worksheets, it may be more convenient to input percentages in separate cells and reference those cells in your formula:

=B2*IF(B2>=300,$F$5,IF(B2>=200,$F$4,IF(B2>=100,$F$3,$F$2)))

The key thing is fixing the bonus cells' references with the $ sign to prevent them from changing when you copy the formula down the column.
Perform different calculations based on a cell value

Excel conditional formatting if cell contains specific text

If you want to highlight cells with certain text, set up an Excel conditional formatting rule based on one of the following formulas.

Case-insensitive:

SEARCH("text", topmost_cell)>0

Case-sensitive:

FIND("text", topmost_cell)>0

For example, to highlight SKUs that contain the words "dress", make a conditional formatting rule with the below formula and apply it to as many cells in column A as you need beginning with cell A2:

=SEARCH("dress", A2)>0
Excel conditional formatting formula: if cell contains specific text

Excel conditional formatting formula: if cell contains text (multiple conditions)

To highlight cells that contain two or more text strings, nest several Search functions within an AND formula. For example, to highlight "blue dress" cells, create a rule based on this formula:

=AND(SEARCH("dress", A2)>0, SEARCH("blue", A2)>0)
Excel conditional formatting formula: if cell contains with multiple conditions

For the detailed steps, please see How to create a conditional formatting rule with a formula.

If cell contains certain text, remove entire row

In case you want to delete rows containing specific text, use Excel's Find and Replace feature in this way:

  1. Select all cells you want to check.
  2. Press Ctrl + F to open the Find and Replace dialog box.
  3. In the Find what box, type the text or number you are looking for, and click the Find All
  4. Click on any search result, and then press Ctrl + A to select all.
  5. Click the Close button to close the Find and Replace
  6. Press Ctrl and the minus button at the same time (Ctrl -), which is the Excel shortcut for Delete.
  7. In the Delete dialog box, select Entire row, and click OK. Done!

In the screenshot below, we are deleting rows containing "dress":
If a cell contains certain text, remove the entire row.

If cell contains, select or copy entire rows

In situations when you want to select or copy rows with relevant data, use Excel's AutoFilter to filter such rows. After that, press Ctrl + A to select the filtered data, Ctrl+C to copy it, and Ctrl+V to paste the data to another location.

To filter cells with two or more criteria, use Advanced Filter to find such cells, and then copy the entire rows with the results or extract only specific columns.

This is how you manipulate cells based on their value in Excel. I thank you for reading and hope to see you on our blog next week!

Practice workbook

Excel If Cell Contains Then - examples (.xlsx file)

244 comments

  1. Hi! I was wondering if you could help me formulate a cell. I'm trying to formulate a cell so that when the sum of other cells (B2-B10) is equal or less than 14 the word 'low' will populate, and if the sum is equal or greater than 15 the word 'high' will populate.

    Thank you so much!

  2. Hello Sir,
    I want to compute the number of sold in an item with multiple variants.

    Example:
    A B C
    1 = Melon || Big || 3
    2 = Apple || Small || 2
    3 = Melon || || 2

    Some item has no variants so. my formula should read or count the particaular amount of item if it has a variants and if no varians it will base in the item only. i dont know if i explain it correcti=ly :) thanks

    • Hi! To calculate the sum of items sold according to two criteria, use the SUMIFS function. This formula count the amount of item "melon" if it has a variants:

      =SUMIFS(C1:C5,A1:A5,"melon",B1:B5,"<>")

      If this is not what you wanted, please describe the problem in more detail.

      • It is already good but if my chosen variant is small it calculates all small. if i want to calculate the variant for a particular item only.

      • I will explain it clearly again since i think my response is broad :)

        when i have an item that has no variant it will still count it. in the formula if put melon and no variant it will not count. it will return 0

      • Example:
        A B C
        1 = Melon || Big || 3
        2 = Apple || Small || 2
        3 = Grapes ||___ || 2
        4 = Melon ||Big|| 6
        5 = Melon ||___ || 4

        When i tried the formula it will not count the grapes if there is no value in it

        • Hi! Your explanations are not very clear to me. If you want to count only by product name, then remove the second condition from the formula.

          =SUMIFS(C1:C5,A1:A5,"melon")

          You can use the COUNTIF function to count by one condition.
          If this is not what you wanted, provide me with an example of the source data and the expected result.

  3. Hi, I have a spreadsheet with 5 columns (A-E) containing date, machine, asset ID, litres, hours/km. I need to calculate the monthly fuel usage for each machine (12 machines). What is the formula I need to use? Machines are refuelled daily, sometimes twice daily, and some are refuelled once every couple of months. The result I'm after is Month, Asset ID, Month Total Litres for each machine, i.e. March, Menard, 4164. March, EX2301, 3059. etc.
    Data as follows:

    Date Machine Asset ID Litres Hours
    16-Feb-24 Volvo Menard 222
    16-Feb-24 Hyundai EX2301 74 2177
    16-Feb-24 G200-02 195 458
    16-Feb-24 JCB TH3101 15 1468
    16-Feb-24 Ute 1XE1II 22 7924
    16-Feb-24 Ute L35HV 11 1526
    19-Feb-24 Volvo Menard 424
    19-Feb-24 Hyundai EX2301 140 2192
    19-Feb-24 G200-02 145 477
    28-Feb-24 Volvo Menard 351
    28-Feb-24 Hyundai EX2301 107 2204
    28-Feb-24 G200-02 139 491
    28-Feb-24 Ute L35HV 14 1601
    28-Feb-24 Ute 1XE1II 46 8317
    29-Feb-24 Volvo Menard 303
    29-Feb-24 Hyundai EX2301 126 2213

    Thank you for your assistance.

  4. Have a sort of complex question about formulas…

    G4 – T4 contain numbers. These numbers are serving as a “point value”. G4 is worth 1 “point” so 1 is entered in the cell, M4 is worth 3 “points” so 3 is entered in the cell, etc.

    I have names entered into column F (F8 – F40). Each Row contains a different name.

    I am attempting to create a matrix where I can enter a date of completion into cells G8:G40 – T8:T40. Once that date is entered, I want to have it add the “points” from each column.

    Example:
    Bill Kapri has a date of completion entered into cell G10, M10, and R10.
    Column G has a “point value” of 1 (number entered into cell G4), Column M has a “point value” of 3 (number entered into cell M4), and Column R has a "point value” of 1 (number entered into cell R4).

    I’d like the total of those “points” from row 4 to add together, only for the columns with a date of completion entered.

    --

    What formula would I need to accomplish such a task? Is this possible?

  5. Hi there,

    I found this explanation very useful, but I haven't been able to find the right formula for what I am trying to do yet. I have a table with two columns: one with the name of the month and year in a MMMYY format ('Jan20, 'Feb20, etc.) and another with numbers (=total amount for each month). Is there a formula that would allow me to select/write down two of the first column values and get the sum of all the totals in that range. For example:

    Jan20 --- 100
    Feb20 --- 250
    Mar20 --- 75
    Apr20 --- 89
    May20 --- 183

    In my summary table, writing "Feb20" in one cell (let's say, B3) and "May20" in the next one (C3) would produce a result of "597" in the cell where the formula resides (D3).

    Do you think it's doable? Let me know if you need any more details. Thank you!

  6. Hi,
    I have four columns, each have text in them. I want to count the number of cells in a row (B1-D1) that contain a specific text based on if the cell in the first column (A1) says "Zoom" or "Office." Thank you!

    A B C D Zoom Total Office Total
    1 Zoom Individual Individual Group 3
    2 Office Group Book Club Individual 3
    3 Zoom Book Club Group 2

      • Hi,
        Sorry about that. I'm trying to write a formula for if a cell in a row contains a particular text, then I want to count the number of adjacent cells in the row that are not blank. So, if A1="Zoom", then count B1, C1, D1 if they are not blank and return that answer in E1 (answer would be a number between 0 and 3).

        • Hi! If you want to count non-empty cells by condition in a single row, try this formula:

          =SUM((A1="Zoom")*((B1<>"")+(C1<>"")+(D1<>"")))

          In range:

          =SUM((A1:A3="Zoom")*((B1:B3<>"")+(C1:C3<>"")+(D1:D3<>"")))

          I hope my advice will help you solve your task.

          • It worked - thank you so much!

  7. Is it possible to use sum and countif to count/sum no of transactions? I am using countifs/sum but I want it to not count swap as 2 transactions.
    I.e the formula to minus 1 count as duplicate when cross adjacent of the cell is same value, no other criteria

    This is because FX SWAP contains 2 rows, i.e cell A2: USD50, cell B2: EUR40, cell A3: EUR40, cell: B3: USD50. And also USD will always be the same value.

    Anyone having the same issue ?

    • Hi! I’m sorry, but your task is not entirely clear to me. For me to be able to help you better, please describe your task in more detail. For example: "USD50" - text or number format? What are the criteria for summarizing? Please specify what you were trying to find, what formula you used. Give an example of the source data and the expected result.

  8. Hi.. i need to sum a row of cells with numbers and text but ignore the text. apparently i tried varies formula i cant get the total sum to remain as it will minus the amt when i input a text in one of the row.. pls help
    eg. i hv a row for Feb (1 feb - 29 Feb)
    in the row below each date, ive input either a OFF or 1
    eg. 1 Feb - OFF, 2 Feb - 1, 3 Feb - 1 <- i use =COUNTIF(I80:K80,"1")*2.2 = 4.4
    BUT when i insert a text in 2 FEB-RED, it will minus the text and the sub-total number = 2.2

  9. Thank you for this page.

    I have a report with 10 columns and 18139 lines. In the B column are product codes (ie RTPGH07304) and the H column has a quantity. The product codes may be repeated several times down the B column. I want to figure out the total quantity overall for a particular product code. For instance, the RTPGH07304 product code may appear three separate times in the B column. In the H column, there is a quantity of 2, 4, and 6 for those separate lines. I want to be able to return a total of 12 to show how many copies of that product were sold. I believe the idea is like the ‘Sum if cell contains text’ section on this page, but I cannot figure it out.

    Thank you for your help with this.

  10. Thanks for the detailed explanations!

    I have two tables with data. Table 1 has a column with a list of items, for example, the text "milking cows."
    In another table, I have a list of ingredients, one of which is "milk".
    I want to search for "milking cows" in the second table, and when Excel finds the word "milk," it should return the value from the column after "milk."
    To start, I would search for 3 of the same consecutive values, but I can't figure out how to combine all this logic.

    To recap, column 1 has a long list of items each cell has multiple words.
    I want to find partial matches in column two, not only one of the words but also search for parts of the words.
    If there is a match in column 2 then pull data from column 3.

    I would be very thankful if you have any way to help with this.

    Thanks!

    • Hello! Your description of the data is not quite accurate or clear. The value "milking cows" is written in the first table, but you are searching in the second table. It is also not clear whether you are searching for "milking cows" or "milk". To understand what you want to do, give an example of the data and the desired result.
      Maybe this article will be helpful: How to find substring in Excel

  11. Hey, I am trying to create a an absenteeism tracker and would like to be able to track the number of Overtime hours - I have row D4 to AH4 with the days of the months - I want to be able to code overtime as OT## and get a sum of the number of OT hours each employee works in AM4 - - Can I total the number beside the code OT in the row?

    • Hi! To identify cells containing the text 'OT###', use the ISNUMBER and SEARCH functions. The cells containing 'OT###' will have the value 1 in the resulting array. Before performing any mathematical operations, remove 'OT' from these cells using the SUBSTITUTE function. Finally, the two arrays are multiplied and the result is summed.
      Try this formula:

      =SUM(SUBSTITUTE(D4:AH4,"OT","") * ISNUMBER(SEARCH("OT",D4:AH4)))

      I hope this will help.

  12. My data is Like this

    Column1 Column2
    Desired 100
    Actual 100
    Desired 75
    Actual 75

    I want to count all the Column data with Desired value of 100 and 75
    Means at the end Result will come 2

  13. I have employees' calendar: names from top to bottom, dates from left to right. Every Saturday column is highlighted. I have added a column next to names, so I am looking for a formula to add +1 to a specific cell if any cross cell (Saturday-name) contains text. This is to count on how many days off a person has worked. Thanks for the help

    • Hi! Use the FILTER function to get all records for a specific employee. The ISTEXT function will check in which cells the text is written. Then we will use multiplication to get 1 in the cells where the column heading is "Saturday". The SUM function will help us find the number of such cells. For example:

      =IFERROR(SUM(ISTEXT(FILTER(C1:Z10,A1:A10="John"))*(C1:Z1="Saturday")),0)

      I hope it’ll be helpful. If this is not what you wanted, please describe the problem in more detail.

      • Thank you for your fast reply. Trying to find out how it works.
        Hope this will explain what I am looking for
        But looks like you gave me links that can help me after I study the info there.

        Thank you once again!

        My sheet looks like this:

        _____ M_T_W_Th_F_St_Sn_M_T_W_Th_F_St_Sn_M_T_W_Th_F_St_Sn
        extra cell John o_o_o_o_o_o_______0_0_0
        extra cell Jane o_o_o_________o_o_o_o___o_o_____o_O_O

        So as formula's result in Jane's extra cell I am looking for a 2, since there're 2 x cells consisting text at Jane and St crossing.

  14. Hello,

    I would really appreciate your help for a formula that will help me count the values from a column that looks like below. My problem is that I have cells, where are multiple values, delimitated by space.
    5
    3 4
    2
    2 1
    1

    Thank you for all your help.

    • Hi! To find the count of numbers in a range when more than one number can be written in a cell, try the formula:

      =COUNT(--TEXTSPLIT(TEXTJOIN(" ",TRUE,A2:A5)," ",,FALSE,,0))

      To find the sum of such numbers, use the SUM function instead of COUNT:

      =SUM(--TEXTSPLIT(TEXTJOIN(" ",TRUE,A2:A5)," ",,FALSE,,0))

      Merge all numbers into one text string using the TEXTJOIN function. Then split the text into individual numbers using the TEXTSPLIT function.

  15. I have a spreadsheet with multiple tabs. I want to do the following:

    Spreadsheet tabs #1 is Detail. This lists the individual prices of each item assigned to a client. Spreadsheet tabs #2 Case and is the summary for each case. I want to take the detailed prices for each client and bring that total of all the detail to the second sheet and have a grand total.

    If tab "Detail" has a "Case #" = 44521, then take all the "Extended" prices on that tab and summarize them to the tab "Case" for that specific client

  16. I want a formula where the cells in a specific range will be counted based on data and criteria in another range.
    in the other hand how many cell is in A1:A10 if there is Bi=10,i=1 to 1o

  17. Thanl you for the response. That equation doesn't take in to account the other sheet that has all the data to pull from. What is the best way for me to send you the data?

  18. I have two sets of data side by side, each with a country and a value. If the country differs (ie text A is different to text B), I want the value of the second country.

    So essentially what is the formula within sumif to say 'if text A does not equal text B, then ?
    Help!

    • Hi! If I understand your task correctly, the following tutorial should help: Compare two columns for matches and differences. If you want to compare the values in the corresponding rows, try the IF formula:

      =IF(A1=D1,B1,E1)

      I hope it’ll be helpful. If this is not what you wanted, please describe the problem in more detail. Give an example of the source data and the expected result.

  19. Hi there,
    I have columns
    A B C D E F G H I
    Pay# Milestone Date Amount Paid On Pay# Milestone Date Amount Paid On TOTAL PAID
    1 2023-01-23 5000 2023-02-18 2 2023-10-03 3000

    I would like to know how can I create a formula to add the AMOUNTS from column c and g in the TOTAL PAID column (column I) just if the payment has a date in the PAID ON cells .

    Thank you

    • Hi! I hope you have studied the recommendations in the tutorial above. It contains answers to your question. Try this formula in column I:

      =IF(ISNUMBER(H2),G2+C2,0)

      I hope it’ll be helpful.

  20. Hello,

    I'm hoping you can help me - I would like an Excel formula to calculate the following for Gain/Loss:

    If cell F is greater than cell C, the answer in cell G is _______, but if cell C is greater than cell F, the answer in cell G is _________.

    Example:
    A B C D E F G H
    Quantity Bought Buy price Total Buy $ Quantity Sold Sell Price Total Sell $ Gain / Loss Running Gain/Loss
    100 $106.22 $10,622.00 100 $112.52 $11,252.00 $ 630.00 $630.00
    100 $ 89.34 $ 8,934.00 100 $ 78.56 $ 7,856.00 -$1,078.00 -$448.00

    Thank-you!
    Kasey

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)