Ms excel if you have in cell this

Содержание

  1. Check if a cell contains text (case-insensitive)
  2. Find cells that contain text
  3. Check if a cell has any text in it
  4. Check if a cell matches specific text
  5. Check if part of a cell matches specific text
  6. How To Use “If Cell Contains” Formulas in Excel
  7. Excel Formula: If cell contains
  8. Explanation: If Cell Contains
  9. Using “if cell contains” formulas in Excel
  10. 1. If cell contains any value, then return a value
  11. 2. If cell contains text/number, then return a value
  12. Check for text
  13. Check for a number or date
  14. 3. If cell contains specific text, then return a value
  15. 4. If cell contains specific text, then return a value (case-sensitive)
  16. 5. If cell does not contain specific text, then return a value
  17. 6. If cell contains one of many text strings, then return a value
  18. 7. If cell contains several of many text strings, then return a value
  19. Final thoughts
  20. Before you go
  21. if cell contains this or that
  22. Related functions
  23. Summary
  24. Generic formula
  25. Explanation
  26. Dave Bruns
  27. Excel If Cell Contains Text
  28. If Cell Contains Text
  29. If Cell Contains Text Then TRUE
  30. If Cell Contains Partial Text
  31. Find for Case Sensitive Match:
  32. Search for Not Case Sensitive Match:
  33. If Range of Cells Contains Text
  34. If Cells Contains Text From List
  35. If Cell Contains Text Then Return a Value
  36. Excel if cell contains word then assign value
  37. Count If Cell Contains Text
  38. Count If Cell Contains Partial Text
  39. If Cell contains text from list then return value
  40. If Cell Contains Text Then SUM
  41. Sum If Cell Contains Partial Text
  42. VBA to check if Cell Contains Text
  43. If Cell Contains Partial Text VBA
  44. If Cell Contains Text Then VBA MsgBox
  45. Which function returns true if cell a1 contains text?
  46. Which function returns true if cell a1 contains text value?

Check if a cell contains text (case-insensitive)

Let’s say you want to ensure that a column contains text, not numbers. Or, perhapsyou want to find all orders that correspond to a specific salesperson. If you have no concern for upper- or lowercase text, there are several ways to check if a cell contains text.

You can also use a filter to find text. For more information, see Filter data.

Find cells that contain text

Follow these steps to locate cells containing specific text:

Select the range of cells that you want to search.

To search the entire worksheet, click any cell.

On the Home tab, in the Editing group, click Find & Select, and then click Find.

In the Find what box, enter the text—or numbers—that you need to find. Or, choose a recent search from the Find what drop-down box.

Note: You can use wildcard characters in your search criteria.

To specify a format for your search, click Format and make your selections in the Find Format popup window.

Click Options to further define your search. For example, you can search for all of the cells that contain the same kind of data, such as formulas.

In the Within box, you can select Sheet or Workbook to search a worksheet or an entire workbook.

Click Find All or Find Next.

Find All lists every occurrence of the item that you need to find, and allows you to make a cell active by selecting a specific occurrence. You can sort the results of a Find All search by clicking a header.

Note: To cancel a search in progress, press ESC.

Check if a cell has any text in it

To do this task, use the ISTEXT function.

Check if a cell matches specific text

Use the IF function to return results for the condition that you specify.

Check if part of a cell matches specific text

To do this task, use the IF, SEARCH, and ISNUMBER functions.

Note: The SEARCH function is case-insensitive.

Источник

How To Use “If Cell Contains” Formulas in Excel

Excel has a number of formulas that help you use your data in useful ways. For example, you can get an output based on whether or not a cell meets certain specifications. Right now, we’ll focus on a function called “if cell contains, then”. Let’s look at an example.

Excel Formula: If cell contains

To test for cells that contain certain text, you can use a formula that uses the IF function together with the SEARCH and ISNUMBER functions. In the example shown, the formula in C5 is:

If you want to check whether or not the A1 cell contains the text “Example”, you can run a formula that will output “Yes” or “No” in the B1 cell. There are a number of different ways you can put these formulas to use. At the time of writing, Excel is able to return the following variations:

  • If cell contains any value
  • If cell contains text
  • If cell contains number
  • If cell contains specific text
  • If cell contains certain text string
  • If cell contains one of many text strings
  • If cell contains several strings

Using these scenarios, you’re able to check if a cell contains text, value, and more.

Explanation: If Cell Contains

One limitation of the IF function is that it does not support Excel wildcards like «?» and «*». This simply means you can’t use IF by itself to test for text that may appear anywhere in a cell.

One solution is a formula that uses the IF function together with the SEARCH and ISNUMBER functions. For example, if you have a list of email addresses, and want to extract those that contain «ABC», the formula to use is this:

If «abc» is found anywhere in a cell B5, IF will return that value. If not, IF will return an empty string («»). This formula’s logical test is this bit:

Using “if cell contains” formulas in Excel

The guides below were written using the latest Microsoft Excel 2019 for Windows 10 . Some steps may vary if you’re using a different version or platform. Contact our experts if you need any further assistance.

1. If cell contains any value, then return a value

This scenario allows you to return values based on whether or not a cell contains any value at all. For example, we’ll be checking whether or not the A1 cell is blank or not, and then return a value depending on the result.

  1. Select the output cell, and use the following formula: =IF(cell<>«», value_to_return, «») .
  2. For our example, the cell we want to check is A2 , and the return value will be No . In this scenario, you’d change the formula to =IF(A2<>«», «No», «») .
  • Since the A2 cell isn’t blank, the formula will return “ No ” in the output cell. If the cell you’re checking is blank, the output cell will also remain blank.
  • 2. If cell contains text/number, then return a value

    With the formula below, you can return a specific value if the target cell contains any text or number. The formula will ignore the opposite data types.

    Check for text

    1. To check if a cell contains text, select the output cell, and use the following formula: =IF(ISTEXT(cell), value_to_return, «») .
    2. For our example, the cell we want to check is A2 , and the return value will be Yes . In this scenario, you’d change the formula to =IF(ISTEXT(A2), «Yes», «») .
    3. Because the A2 cell does contain text and not a number or date, the formula will return “ Yes ” into the output cell.

    Check for a number or date

    1. To check if a cell contains a number or date, select the output cell, and use the following formula: =IF(ISNUMBER(cell), value_to_return, «») .
    2. For our example, the cell we want to check is D2 , and the return value will be Yes . In this scenario, you’d change the formula to =IF(ISNUMBER(D2), «Yes», «») .
    3. Because the D2 cell does contain a number and not text, the formula will return “ Yes ” into the output cell.

    3. If cell contains specific text, then return a value

    To find a cell that contains specific text, use the formula below.

    1. Select the output cell, and use the following formula: =IF(cell=»text», value_to_return, «») .
    2. For our example, the cell we want to check is A2 , the text we’re looking for is “ example ”, and the return value will be Yes . In this scenario, you’d change the formula to =IF(A2=»example», «Yes», «») .
    3. Because the A2 cell does consist of the text “ example ”, the formula will return “ Yes ” into the output cell.

    4. If cell contains specific text, then return a value (case-sensitive)

    To find a cell that contains specific text, use the formula below. This version is case-sensitive, meaning that only cells with an exact match will return the specified value.

    1. Select the output cell, and use the following formula: =IF(EXACT(cell,»case_sensitive_text»), «value_to_return», «») .
    2. For our example, the cell we want to check is A2 , the text we’re looking for is “ EXAMPLE ”, and the return value will be Yes . In this scenario, you’d change the formula to =IF(EXACT(A2,»EXAMPLE»), «Yes», «») .
    3. Because the A2 cell does consist of the text “ EXAMPLE ” with the matching case, the formula will return “ Yes ” into the output cell.

    5. If cell does not contain specific text, then return a value

    The opposite version of the previous section. If you want to find cells that don’t contain a specific text, use this formula.

    1. Select the output cell, and use the following formula: =IF(cell=»text», «», «value_to_return») .
    2. For our example, the cell we want to check is A2 , the text we’re looking for is “ example ”, and the return value will be No . In this scenario, you’d change the formula to =IF(A2=»example», «», «No») .
    3. Because the A2 cell does consist of the text “ example ”, the formula will return a blank cell. On the other hand, other cells return “ No ” into the output cell.

    6. If cell contains one of many text strings, then return a value

    This formula should be used if you’re looking to identify cells that contain at least one of many words you’re searching for.

    1. Select the output cell, and use the following formula: =IF(OR(ISNUMBER(SEARCH(«string1», cell)), ISNUMBER(SEARCH(«string2», cell))), value_to_return, «») .
    2. For our example, the cell we want to check is A2 . We’re looking for either “ tshirt ” or “ hoodie ”, and the return value will be Valid . In this scenario, you’d change the formula to =IF(OR(ISNUMBER(SEARCH(«tshirt»,A2)),ISNUMBER(SEARCH(«hoodie»,A2))),»Valid «,»») .
    3. Because the A2 cell does contain one of the text values we searched for, the formula will return “ Valid ” into the output cell.

    To extend the formula to more search terms, simply modify it by adding more strings using ISNUMBER(SEARCH(«string», cell)) .

    7. If cell contains several of many text strings, then return a value

    This formula should be used if you’re looking to identify cells that contain several of the many words you’re searching for. For example, if you’re searching for two terms, the cell needs to contain both of them in order to be validated.

    1. Select the output cell, and use the following formula: =IF(AND(ISNUMBER(SEARCH(«string1»,cell)), ISNUMBER(SEARCH(«string2″,cell))), value_to_return,»») .
    2. For our example, the cell we want to check is A2 . We’re looking for “ hoodie ” and “ black ”, and the return value will be Valid . In this scenario, you’d change the formula to =IF(AND(ISNUMBER(SEARCH(«hoodie»,A2)),ISNUMBER(SEARCH(«black»,A2))),»Valid «,»») .
    3. Because the A2 cell does contain both of the text values we searched for, the formula will return “ Valid ” to the output cell.

    Final thoughts

    We hope this article was useful to you in learning how to use “if cell contains” formulas in Microsoft Excel. Now, you can check if any cells contain values, text, numbers, and more. This allows you to navigate, manipulate and analyze your data efficiently.

    We’re glad you’re read the article up to here 🙂 Thank you 🙂

    Please share it on your socials. Someone else will benefit.

    Before you go

    If you need any further help with Excel, don’t hesitate to reach out to our customer service team, which is available 24/7 to assist you. Return to us for more informative articles all related to productivity and modern-day technology!

    Would you like to receive promotions, deals, and discounts to get our products for the best price? Don’t forget to subscribe to our newsletter by entering your email address below! Receive the latest technology news in your inbox and be the first to read our tips to become more productive.

    Источник

    if cell contains this or that

    Summary

    To check to see if a cell contains more than one substring, you can use a formula based on the COUNTIF function.

    In the example shown, the formula in C5 is:

    Generic formula

    Explanation

    The core of this formula is COUNTIF, which returns zero if none of the substrings is found, and a positive number if at least one substring is found. The twist in this case is that we are giving COUNTIF more than one substring to look for in the criteria, supplied as an «array constant». As a result, COUNTIF will return an array of results, with one result per item in the original criteria.

    Note that we are also using the asterisk (*) as a wildcard for zero or more characters on either side of the substrings. This is what allows COUNTIF to count the substrings anywhere in the text (i.e. this provides the «contains» behavior).

    Because we are getting back an array from COUNTIF, we use the SUM function to sum all items in the array. The result goes into the IF function as the «logical test». Any positive number will be evaluated as TRUE, so you can supply any values you like for value if true and value if false.

    Dave Bruns

    Hi — I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.

    Источник

    Excel If Cell Contains Text

    Excel If Cell Contains Text Then Formula helps you to return the output when a cell have any text or a specific text. You can check if a cell contains a some string or text and produce something in other cell. For Example you can check if a cell A1 contains text ‘example text’ and print Yes or No in Cell B1. Following are the example Formulas to check if Cell contains text then return some thing in a Cell.

    If Cell Contains Text

    Here are the Excel formulas to check if Cell contains specific text then return something. This will return if there is any string or any text in given Cell. We can use this simple approach to check if a cell contains text, specific text, string, any text using Excel If formula. We can use equals to operator(=) to compare the strings .

    If Cell Contains Text Then TRUE

    Following is the Excel formula to return True if a Cell contains Specif Text. You can check a cell if there is given string in the Cell and return True or False.

    The formula will return true if it found the match, returns False of no match found.

    If Cell Contains Partial Text

    We can return Text If Cell Contains Partial Text. We use formula or VBA to Check Partial Text in a Cell.

    Find for Case Sensitive Match:

    We can check if a Cell Contains Partial Text then return something using Excel Formula. Following is a simple example to find the partial text in a given Cell. We can use if your want to make the criteria case sensitive.

    • Here, Find Function returns the finding position of the given string
    • Use Find function is Case Sensitive
    • IsError Function check if Find Function returns Error, that means, string not found

    Search for Not Case Sensitive Match:

    We can use Search function to check if Cell Contains Partial Text. Search function useful if you want to make the checking criteria Not Case Sensitive.

    If Range of Cells Contains Text

    We can check for the strings in a range of cells. Here is the formula to find If Range of Cells Contains Text. We can use Count If Formula to check the excel if range of cells contains specific text and return Text.

    • CountIf function counts the number of cells with given criteria
    • We can use If function to return the required Text
    • Formula displays the Text ‘Range Contains Text” if match found
    • Returns “Text Not Found in the Given Range” if match not found in the specified range

    If Cells Contains Text From List

    Below formulas returns text If Cells Contains Text from given List. You can use based on your requirement.

    VlookUp to Check If Cell Contains Text from a List:
    We can use VlookUp function to match the text in the Given list of Cells. And return the corresponding values.

    • Check if a List Contains Text:
      =IF(ISERR(VLOOKUP(F1,A1:B21,2,FALSE)),”False:Not Contains”,”True: Text Found”)
    • Check if a List Contains Text and Return Corresponding Value:
      =VLOOKUP(F1,A1:B21,2,FALSE)
    • Check if a List Contains Partial Text and Return its Value:
      =VLOOKUP(“*”&F1&”*”,A1:B21,2,FALSE)

    If Cell Contains Text Then Return a Value

    We can return some value if cell contains some string. Here is the the the Excel formula to return a value if a Cell contains Text. You can check a cell if there is given string in the Cell and return some string or value in another column.

    The formula will return true if it found the match, returns False of no match found. can

    Excel if cell contains word then assign value

    You can replace any word in the following formula to check if cell contains word then assign value.


    Search function will check for a given word in the required cell and return it’s position. We can use If function to check if the value is greater than 0 and assign a given value (example: 1) in the cell. search function returns #Value if there is no match found in the cell, we can handle this using IFERROR function.

    Count If Cell Contains Text

    We can check If Cell Contains Text Then COUNT. Here is the Excel formula to Count if a Cell contains Text. You can count the number of cells containing specific text.

    The formula will Sum the values in Column B if the cells of Column A contains the given text.

    Count If Cell Contains Partial Text

    We can count the cells based on partial match criteria. The following Excel formula Counts if a Cell contains Partial Text.

    • We can use the CountIf Function to Count the Cells if they contains given String
    • Wild-card operators helps to make the CountIf to check for the Partial String
    • Put Your Text between two asterisk symbols (*YourText*) to make the criteria to find any where in the given Cell
    • Add Asterisk symbol at end of your text (YourText*) to make the criteria to find your text beginning of given Cell
    • Place Asterisk symbol at beginning of your text (*YourText) to make the criteria to find your text end of given Cell

    If Cell contains text from list then return value

    Here is the Excel Formula to check if cell contains text from list then return value. We can use COUNTIF and OR function to check the array of values in a Cell and return the given Value. Here is the formula to check the list in range D2:D5 and check in Cell A2 and return value in B2.

    If Cell Contains Text Then SUM

    Following is the Excel formula to Sum if a Cell contains Text. You can total the cell values if there is given string in the Cell. Here is the example to sum the column B values based on the values in another Column.

    The formula will Sum the values in Column B if the cells of Column A contains the given text.

    Sum If Cell Contains Partial Text

    Use SumIfs function to Sum the cells based on partial match criteria. The following Excel formula Sums the Values if a Cell contains Partial Text.

    • SUMIFS Function will Sum the Given Sum Range
    • We can specify the Criteria Range, and wild-card expression to check for the Partial text
    • Put Your Text between two asterisk symbols (*YourText*) to Sum the Cells if the criteria to find any where in the given Cell
    • Add Asterisk symbol at end of your text (YourText*) to Sum the Cells if the criteria to find your text beginning of given Cell
    • Place Asterisk symbol at beginning of your text (*YourText) to Sum the Cells if criteria to find your text end of given Cell

    VBA to check if Cell Contains Text

    Here is the VBA function to find If Cells Contains Text using Excel VBA Macros.

    If Cell Contains Partial Text VBA

    We can use VBA to check if Cell Contains Text and Return Value. Here is the simple VBA code match the partial text. Excel VBA if Cell contains partial text macros helps you to use in your procedures and functions.

    • CheckIfCellContainsPartialText VBA Function returns true if Cell Contains Partial Text
    • inStr Function will return the Match Position in the given string

    If Cell Contains Text Then VBA MsgBox

    Here is the simple VBA code to display message box if cell contains text. We can use inStr Function to search for the given string. And show the required message to the user.

    • inStr Function will return the Match Position in the given string
    • blnMatch is the Boolean variable becomes True when match string
    • You can display the message to the user if a Range Contains Text

    Which function returns true if cell a1 contains text?

    You can use the Excel If function and Find function to return TRUE if Cell A1 Contains Text. Here is the formula to return True.

    Which function returns true if cell a1 contains text value?

    You can use the Excel If function with Find function to return TRUE if a Cell A1 Contains Text Value. Below is the formula to return True based on the text value.

    Источник

    Excel for Microsoft 365 Excel 2021 Excel 2019 Excel 2016 Excel 2013 Excel 2010 Excel 2007 More…Less

    Let’s say you want to ensure that a column contains text, not numbers. Or, perhapsyou want to find all orders that correspond to a specific salesperson. If you have no concern for upper- or lowercase text, there are several ways to check if a cell contains text.

    You can also use a filter to find text. For more information, see Filter data.

    Find cells that contain text

    Follow these steps to locate cells containing specific text:

    1. Select the range of cells that you want to search.

      To search the entire worksheet, click any cell.

    2. On the Home tab, in the Editing group, click Find & Select, and then click Find.

      Find option on the ribbon

    3. In the Find what box, enter the text—or numbers—that you need to find. Or, choose a recent search from the Find what drop-down box.

      Note: You can use wildcard characters in your search criteria.

    4. To specify a format for your search, click Format and make your selections in the Find Format popup window.

    5. Click Options to further define your search. For example, you can search for all of the cells that contain the same kind of data, such as formulas.

      In the Within box, you can select Sheet or Workbook to search a worksheet or an entire workbook.

    6. Click Find All or Find Next.

      Find All lists every occurrence of the item that you need to find, and allows you to make a cell active by selecting a specific occurrence. You can sort the results of a Find All search by clicking a header.

    Note: To cancel a search in progress, press ESC.

    Check if a cell has any text in it

    To do this task, use the ISTEXT function.

    ISTEXT Examples

    Check if a cell matches specific text

    Use the IF function to return results for the condition that you specify.

    IF Examples

    Check if part of a cell matches specific text

    To do this task, use the IF, SEARCH, and ISNUMBER functions.

    Note: The SEARCH function is case-insensitive.

    IF, ISNUMBER and SEARCH examples

    Need more help?

    Excel has a number of formulas that help you use your data in useful ways. For example, you can get an output based on whether or not a cell meets certain specifications. Right now, we’ll focus on a function called “if cell contains, then”. Let’s look at an example.

    Jump To Specific Section:

    1. Explanation: If Cell Contains
    2. If cell contains any value, then return a value
    3. If cell contains text/number, then return a value
    4. If cell contains specific text, then return a value
    5. If cell contains specific text, then return a value (case-sensitive)
    6. If cell does not contain specific text, then return a value
    7. If cell contains one of many text strings, then return a value
    8. If cell contains several of many text strings, then return a value

    Excel Formula: If cell contains

    Generic formula 

    =IF(ISNUMBER(SEARCH("abc",A1)),A1,"")

    Summary 

    To test for cells that contain certain text, you can use a formula that uses the IF function together with the SEARCH and ISNUMBER functions.  In the example shown, the formula in C5 is:

    =IF(ISNUMBER(SEARCH("abc",B5)),B5,"")

    If you want to check whether or not the A1 cell contains the text “Example”, you can run a formula that will output “Yes” or “No” in the B1 cell. There are a number of different ways you can put these formulas to use. At the time of writing, Excel is able to return the following variations:

    • If cell contains any value
    • If cell contains text
    • If cell contains number
    • If cell contains specific text
    • If cell contains certain text string
    • If cell contains one of many text strings
    • If cell contains several strings

    Using these scenarios, you’re able to check if a cell contains text, value, and more. 

    Explanation: If Cell Contains

    One limitation of the IF function is that it does not support Excel wildcards like «?» and «*». This simply means you can’t use IF by itself to test for text that may appear anywhere in a cell.

    One solution is a formula that uses the IF function together with the SEARCH and ISNUMBER functions. For example, if you have a list of email addresses, and want to extract those that contain «ABC», the formula to use is this:

    =IF(ISNUMBER(SEARCH("abc",B5)),B5,""). Assuming cells run to B5

    If «abc» is found anywhere in a cell B5, IF will return that value. If not, IF will return an empty string («»). This formula’s logical test is this bit:

    ISNUMBER(SEARCH("abc",B5))


    Read article: Excel efficiency: 11 Excel Formulas To Increase Your Productivity

    Using “if cell contains” formulas in Excel

    The guides below were written using the latest Microsoft Excel 2019 for Windows 10. Some steps may vary if you’re using a different version or platform. Contact our experts if you need any further assistance.

    1. If cell contains any value, then return a value

    This scenario allows you to return values based on whether or not a cell contains any value at all. For example, we’ll be checking whether or not the A1 cell is blank or not, and then return a value depending on the result.

    • Select the output cell, and use the following formula: =IF(cell<>»», value_to_return, «»).
    • For our example, the cell we want to check is A2, and the return value will be No. In this scenario, you’d change the formula to =IF(A2<>»», «No», «»)
    • Since the A2 cell isn’t blank, the formula will return “No” in the output cell. If the cell you’re checking is blank, the output cell will also remain blank.

    2. If cell contains text/number, then return a value

    With the formula below, you can return a specific value if the target cell contains any text or number. The formula will ignore the opposite data types.

    Check for text

    • To check if a cell contains text, select the output cell, and use the following formula: =IF(ISTEXT(cell), value_to_return, «»).
    • For our example, the cell we want to check is A2, and the return value will be Yes. In this scenario, you’d change the formula to =IF(ISTEXT(A2), «Yes», «»)
      check for txt
    • Because the A2 cell does contain text and not a number or date, the formula will return “Yes” into the output cell.

    Check for a number or date

    • To check if a cell contains a number or date, select the output cell, and use the following formula: =IF(ISNUMBER(cell), value_to_return, «»).
    • For our example, the cell we want to check is D2, and the return value will be Yes. In this scenario, you’d change the formula to =IF(ISNUMBER(D2), «Yes», «»)
      check for number or date
    • Because the D2 cell does contain a number and not text, the formula will return “Yes” into the output cell.

    3. If cell contains specific text, then return a value

    To find a cell that contains specific text, use the formula below.

    • Select the output cell, and use the following formula: =IF(cell=»text», value_to_return, «»).
    • For our example, the cell we want to check is A2, the text we’re looking for is “example”, and the return value will be Yes. In this scenario, you’d change the formula to =IF(A2=»example», «Yes», «»)
      If cell contains specific text, then return a value
    • Because the A2 cell does consist of the text “example”, the formula will return “Yes” into the output cell.

    4. If cell contains specific text, then return a value (case-sensitive)

    To find a cell that contains specific text, use the formula below. This version is case-sensitive, meaning that only cells with an exact match will return the specified value.

    • Select the output cell, and use the following formula: =IF(EXACT(cell,»case_sensitive_text»), «value_to_return», «»).
    • For our example, the cell we want to check is A2, the text we’re looking for is “EXAMPLE”, and the return value will be Yes. In this scenario, you’d change the formula to =IF(EXACT(A2,»EXAMPLE»), «Yes», «»).
    • Because the A2 cell does consist of the text “EXAMPLE” with the matching case, the formula will return “Yes” into the output cell.

    5. If cell does not contain specific text, then return a value

    The opposite version of the previous section. If you want to find cells that don’t contain a specific text, use this formula.

    • Select the output cell, and use the following formula: =IF(cell=»text», «», «value_to_return»).
    • For our example, the cell we want to check is A2, the text we’re looking for is “example”, and the return value will be No. In this scenario, you’d change the formula to =IF(A2=»example», «», «No»).
      If cell contains specific text, then return a value (case-sensitive)
    • Because the A2 cell does consist of the text “example”, the formula will return a blank cell. On the other hand, other cells return “No” into the output cell.

    6. If cell contains one of many text strings, then return a value

    This formula should be used if you’re looking to identify cells that contain at least one of many words you’re searching for.

    • Select the output cell, and use the following formula: =IF(OR(ISNUMBER(SEARCH(«string1», cell)), ISNUMBER(SEARCH(«string2», cell))), value_to_return, «»).
    • For our example, the cell we want to check is A2. We’re looking for either “tshirt” or “hoodie”, and the return value will be Valid. In this scenario, you’d change the formula to =IF(OR(ISNUMBER(SEARCH(«tshirt»,A2)),ISNUMBER(SEARCH(«hoodie»,A2))),»Valid «,»»).
      =IF(OR(ISNUMBER(SEARCH("tshirt",A2)),ISNUMBER(SEARCH("hoodie",A2))),"Valid ","").
    • Because the A2 cell does contain one of the text values we searched for, the formula will return “Valid” into the output cell.

    To extend the formula to more search terms, simply modify it by adding more strings using ISNUMBER(SEARCH(«string», cell)).

    7. If cell contains several of many text strings, then return a value

    This formula should be used if you’re looking to identify cells that contain several of the many words you’re searching for. For example, if you’re searching for two terms, the cell needs to contain both of them in order to be validated.

    • Select the output cell, and use the following formula: =IF(AND(ISNUMBER(SEARCH(«string1»,cell)), ISNUMBER(SEARCH(«string2″,cell))), value_to_return,»»).
    • For our example, the cell we want to check is A2. We’re looking for “hoodie” and “black”, and the return value will be Valid. In this scenario, you’d change the formula to =IF(AND(ISNUMBER(SEARCH(«hoodie»,A2)),ISNUMBER(SEARCH(«black»,A2))),»Valid «,»»).
      =IF(AND(ISNUMBER(SEARCH("hoodie",A2)),ISNUMBER(SEARCH("black",A2))),"Valid ","").
    • Because the A2 cell does contain both of the text values we searched for, the formula will return “Valid” to the output cell.

    Final thoughts

    We hope this article was useful to you in learning how to use “if cell contains” formulas in Microsoft Excel. Now, you can check if any cells contain values, text, numbers, and more. This allows you to navigate, manipulate and analyze your data efficiently.

    We’re glad you’re read the article up to here :) Thank you :)

    You may also like

    » How to use NPER Function in Excel
    » How to Separate First and Last Name in Excel
    » How to Calculate Break-Even Analysis in Excel

    The core of this formula is COUNTIF, which returns zero if none of the substrings is found, and a positive number if at least one substring is found. The twist in this case is that we are giving COUNTIF more than one substring to look for in the criteria, supplied as an «array constant». As a result, COUNTIF will return an array of results, with one result per item in the original criteria.

    Note that we are also using the asterisk (*) as a wildcard for zero or more characters on either side of the substrings. This is what allows COUNTIF to count the substrings anywhere in the text (i.e. this provides the «contains» behavior).

    Because we are getting back an array from COUNTIF, we use the SUM function to sum all items in the array. The result goes into the IF function as the «logical test». Any positive number will be evaluated as TRUE, so you can supply any values you like for value if true and value if false.

    Author: Oscar Cronquist Article last updated on February 01, 2023

    This article demonstrates several ways to check if a cell contains any value based on a list. The first example shows how to check if any of the values in the list is in the cell.

    The remaining examples show formulas that also return the matching values. You may need different formulas based on the Excel version you are using.

    Read this article If cell equals value from list to match the entire cell to any value from a list. To match a single cell to a single value read this: If cell contains text

    To check if a cell contains all values in the list read this: If cell contains multiple values

    What’s on this page

    1. Check if the cell contains any value in the list
    2. Display matches if cell contains text from list (Excel 2019)
    3. Display matches if cell contains text from list (Earlier Excel versions)
    4. Filter delimited values not in list (Excel 365)

    1. Check if the cell contains any value in the list

    The image above shows an array formula in cell C3 that checks if cell B3 contains at least one of the values in List (E3:E7), it returns «Yes» if any of the values are found in column B and returns nothing if the cell contains none of the values.

    For example, cell B3 contains XBF which is found in cell E7. Cell B4 contains text ZDS found in cell E6. Cell C5 contains no values in the list.

    =IF(OR(COUNTIF(B3,»*»&$E$3:$E$7&»*»)), «Yes», «»)

    You need to enter this formula as an array formula if you are not an Excel 365 subscriber. There is another formula below that doesn’t need to be entered as an array formula, however, it is slightly larger and more complicated.

    1. Type formula in cell C3.
    2. Press and hold CTRL + SHIFT simultaneously.
    3.  Press Enter once.
    4. Release all keys.

    Excel adds curly brackets to the formula automatically if you successfully entered the array formula. Don’t enter the curly brackets yourself.

    Back to top

    1.1 Explaining formula in cell C3

    Step 1 — Check if the cell contains any of the values in the list

    The COUNTIF function lets you count cells based on a condition, however, it also allows you to count cells based on multiple conditions if you use a cell range instead of a cell.

    COUNTIF(rangecriteria)

    The criteria argument utilizes a beginning and ending asterisk in order to match a text string and not the entire cell value, asterisks are one of two wildcard characters that you are allowed to use.

    The ampersands concatenate the asterisks to cell range E3:E7.

    COUNTIF(B3,»*»&$E$3:$E$7&»*»)

    becomes

    COUNTIF(«LNU, YNO, XBF», {«*MVN*»; «*QLL*»; «*BQX*»; «*ZDS*»; «*XBF*»})

    and returns this array

    {0; 0; 0; 0; 1}

    which tells us that the last value in the list is found in cell B3.

    Step 2 — Return TRUE if at least one value is 1

    The OR function returns TRUE if at least one of the values in the array is TRUE, the numerical equivalent to TRUE is 1.

    OR({0; 0; 0; 0; 1})

    returns TRUE.

    Step 3 — Return Yes or nothing

    The IF function then returns «Yes» if the logical test evaluates to TRUE and nothing if the logical test returns FALSE.

    IF(TRUE, «Yes», «»)

    returns «Yes» in cell B3.

    Back to top

    Regular formula

    The following formula is quite similar to the formula above except that it is a regular formula and it has an additional INDEX function.

    =IF(OR(INDEX(COUNTIF(B3,»*»&$E$3:$E$7&»*»),)), «Yes», «»)

    Back to top

    Back to top

    2. Display matches if the cell contains text from a list

    If cell contains value from list

    The image above demonstrates a formula that checks if a cell contains a value in the list and then returns that value. If multiple values match then all matching values in the list are displayed.

    For example, cell B3 contains «ZDS, YNO, XBF» and cell range E3:E7 has two values that match, «ZDS» and «XBF».

    Formula in cell C3:

    =TEXTJOIN(«, «, TRUE, IF(COUNTIF(B3, «*»&$E$3:$E$7&»*»), $E$3:$E$7, «»))

    The TEXTJOIN function is available for Office 2019 and Office 365 subscribers. You will get a #NAME error if your Excel version is missing this function. Office 2019 users may need to enter this formula as an array formula.

    The next formula works with most Excel versions.

    Array formula in cell C3:

    =INDEX($E$3:$E$7, MATCH(1, COUNTIF(B3, «*»&$E$3:$E$7&»*»), 0))

    However, it only returns the first match. There is another formula below that returns all matching values, check it out.

    How to enter an array formula

    Back to top

    2.1 Explaining formula in cell C3

    Step 1 — Count cells containing text strings

    The COUNTIF function lets you count cells based on a condition, we are going to use multiple conditions. I am going to use asterisks to make the COUNTIF function check for a partial match.

    The asterisk is one of two wild card characters that you can use, it matches 0 (zero) to any number of any characters.

    COUNTIF(B3, «*»&$E$3:$E$7&»*»)

    becomes

    COUNTIF(«ZDS, YNO, XBF», {«*MVN*»; «*QLL*»; «*BQX*»; «*ZDS*»; «*XBF*»})

    and returns {1; 0; 0; 0; 1}.

    This array contains as many values as there values in the list, the position of each value in the array matches the position of the value in the list. This means that we can tell from the array that the first value and the last value is found in cell B3.

    Step 2 — Return the actual value

    The IF function returns one value if the logical test is TRUE and another value if the logical test is FALSE.

    IF(logical_test, [value_if_true], [value_if_false])

    This allows us to create an array containing values that exists in cell B3.

    IF(COUNTIF(B3, «*»&$E$3:$E$7&»*»), $E$3:$E$7, «»)

    becomes

    IF(COUNTIF(«ZDS, YNO, XBF», {«*MVN*»; «*QLL*»; «*BQX*»; «*ZDS*»; «*XBF*»}), {«*MVN*»; «*QLL*»; «*BQX*»; «*ZDS*»; «*XBF*»}, «»)

    and returns {«»;»»;»»;»ZDS»;»XBF»}.

    Step 3 — Concatenate values in array

    The TEXTJOIN function allows you to combine text strings from multiple cell ranges and also use delimiting characters if you want.

    TEXTJOIN(delimiterignore_emptytext1[text2], …)

    TEXTJOIN(«, «, TRUE, IF(COUNTIF(B3, «*»&$E$3:$E$7&»*»), $E$3:$E$7, «»))

    becomes

    TEXTJOIN(«, «, TRUE, {«»;»»;»»;»ZDS»;»XBF»})

    and returns text strings ZDS, XBF.

    Back to top

    3. Display matches if cell contains text from a list (Earlier Excel versions)

    If cell contains value from list show all matching values

    The image above demonstrates a formula that returns multiple matches if the cell contains values from a list. This array formula works with most Excel versions.

    Array formula in cell C3:

    =IFERROR(INDEX($G$3:$G$7, SMALL(IF(COUNTIF($B3, «*»&$G$3:$G$7&»*»), MATCH(ROW($G$3:$G$7), ROW($G$3:$G$7)), «»), COLUMNS($A$1:A1))), «»)

    How to enter an array formula

    Copy cell C3 and paste to cell range C3:E15.

    Back to top

    3.1 Explaining formula in cell C3

    Step 1 — Identify matching values in cell

    The COUNTIF function lets you count cells based on a condition, we are going to use a cell range instead. This will return an array of values.

    COUNTIF($B3, «*»&$G$3:$G$7&»*»)

    becomes

    COUNTIF(«ZDS, YNO, XBF», {«*MVN*»; «*QLL*»; «*BQX*»; «*ZDS*»; «*XBF*»})

    and returns {0; 0; 0; 1; 1}.

    Step 2 — Calculate relative positions of matching values

    The IF function returns one value if the logical test is TRUE and another value if the logical test is FALSE.

    IF(logical_test, [value_if_true], [value_if_false])

    This allows us to create an array containing values representing row numbers.

    IF(COUNTIF($B3, «*»&$G$3:$G$7&»*»), MATCH(ROW($G$3:$G$7), ROW($G$3:$G$7)), «»)

    becomes

    IF({0; 0; 0; 2; 1}, MATCH(ROW($G$3:$G$7), ROW($G$3:$G$7)), «»)

    becomes

    IF({0; 0; 0; 2; 1}, {1; 2; 3; 4; 5}, «»)

    and returns {«»; «»; «»; 4; 5}.

    Step 3 — Extract the k-th smallest number

    I am going to use the SMALL function to be able to extract one value in each cell in the next step.

    SMALL(arrayk)

    SMALL(IF(COUNTIF($B3, «*»&$G$3:$G$7&»*»), MATCH(ROW($G$3:$G$7), ROW($G$3:$G$7)), «»), COLUMNS($A$1:A1)))

    becomes

    SMALL({«»; «»; «»; 4; 5}, COLUMNS($A$1:A1)))

    The COLUMNS function calculates the number of columns in a cell range, however, the cell reference in our formula grows when you copy the cell and paste to adjacent cells to the right.

    SMALL({0; 0; 0; 4; 5}, COLUMNS($A$1:A1)))

    becomes

    SMALL({«»; «»; «»; 4; 5}, 1)

    and returns 4.

    Step 4 — Return value based on row number

    The INDEX function returns a value from a cell range or array, you specify which value based on a row and column number. Both the [row_num] and [column_num] are optional.

    INDEX(array[row_num][column_num])

    INDEX($G$3:$G$7, SMALL(IF(COUNTIF($B3, «*»&$G$3:$G$7&»*»), MATCH(ROW($G$3:$G$7), ROW($G$3:$G$7)), «»), COLUMNS($A$1:A1)))

    becomes

    INDEX($G$3:$G$7, 4)

    becomes

    INDEX({«MVN»;»QLL»;»BQX»;»ZDS»;»XBF»}, 4)

    and returns «ZDS» in cell C3.

    Step 5 — Remove error values

    The IFERROR function lets you catch most errors in Excel formulas except #SPILL! errors. Be careful when using the IFERROR function, it may make it much harder spotting formula errors.

    IFERROR(valuevalue_if_error)

    There are two arguments in the IFERROR function. The value argument is returned if it is not evaluating to an error. The value_if_error argument is returned if the value argument returns an error.

    IFERROR(INDEX($G$3:$G$7, SMALL(IF(COUNTIF($B3, «*»&$G$3:$G$7&»*»), MATCH(ROW($G$3:$G$7), ROW($G$3:$G$7)), «»), COLUMNS($A$1:A1))), «»)

    Back to top

    4. Filter delimited values not in the list (Excel 365)

    Display values not in cell from a list

    The formula in cell C3 lists values in cell B3 that are not in the List specified in cell range E3:E7. The formula returns #CALC! error if all values are in the list, see cell C14 as an example.

    Excel 365 dynamic array formula in cell C3:

    =LET(z,TRIM(TEXTSPLIT(B3,,»,»)),TEXTJOIN(«, «,TRUE,FILTER(z,NOT(COUNTIF($E$3:$E$7,z)))))

    4.1 Explaining formula

    Step 1 — Split values with a delimiting character

    The TEXTSPLIT function splits a string into an array based on delimiting values.

    Function syntax: TEXTSPLIT(Input_Text, col_delimiter, [row_delimiter], [Ignore_Empty])

    TEXTSPLIT(B3,,»,»)

    becomes

    TEXTSPLIT(«ZDS, VTO, XBF»,,»,»)

    and returns

    {«ZDS»; » VTO»; » XBF»}

    Step 2 — Remove leading and trailing spaces

    The TRIM function deletes all blanks or space characters except single blanks between words in a cell value.

    Function syntax: TRIM(text)

    TRIM(TEXTSPLIT(B3,,»,»))

    becomes

    TRIM({«ZDS»; » VTO»; » XBF»})

    and returns

    {«ZDS»; «VTO»; «XBF»}

    Step 3 — Check if values are in list

    The COUNTIF function calculates the number of cells that is equal to a condition.

    Function syntax: COUNTIF(range, criteria)

    COUNTIF($E$3:$E$7,TRIM(TEXTSPLIT(B3,,»,»)))

    becomes

    COUNTIF({«MVN»;»QLL»;»BQX»;»ZDS»;»XBF»},{«ZDS»; «VTO»; «XBF»})

    and returns

    {1; 0; 1}

    These numbers indicate if a value is found in the list, zero means not in the list and 1 or higher means that the value is in the list at least once.

    The number’s position corresponds to the position of the values. {1; 0; 1} — {«ZDS»; «VTO»; «XBF»} meaning «ZDS» and «XBF» are in the list and «VTO» not.

    Step 4 — Not

    The NOT function returns the boolean opposite to the given argument.

    Function syntax: NOT(logical)

    NOT(COUNTIF($E$3:$E$7,TRIM(TEXTSPLIT(B3,,»,»))))

    becomes

    NOT({1; 0; 1})

    and returns

    {FALSE; TRUE; FALSE}.

    0 (zero) is equivalent to FALSE. The boolean opposite is TRUE.

    Any other number than 0 (zero) is equivalent to TRUE.  The boolean opposite is FALSE.

    Step 5 — Filter

    The FILTER function extracts values/rows based on a condition or criteria.

    Function syntax: FILTER(array, include, [if_empty])

    FILTER(TRIM(TEXTSPLIT(B3,,»,»)),NOT(COUNTIF($E$3:$E$7,TRIM(TEXTSPLIT(B3,,»,»)))))

    becomes

    FILTER({«ZDS»; «VTO»; «XBF»},{FALSE; TRUE; FALSE})

    and returns

    «VTO».

    Step 6 — Join

    The TEXTJOIN function combines text strings from multiple cell ranges.

    Function syntax: TEXTJOIN(delimiter, ignore_empty, text1, [text2], …)

    TEXTJOIN(«, «,TRUE,FILTER(TRIM(TEXTSPLIT(B3,,»,»)),NOT(COUNTIF($E$3:$E$7,TRIM(TEXTSPLIT(B3,,»,»))))))

    becomes

    TEXTJOIN(«, «,TRUE,{«VTO»})

    and returns

    «VTO».

    Step 7 — Shorten the formula

    The LET function lets you name intermediate calculation results which can shorten formulas considerably and improve performance.

    Function syntax: LET(name1, name_value1, calculation_or_name2, [name_value2, calculation_or_name3…])

    TEXTJOIN(«, «,TRUE,FILTER(TRIM(TEXTSPLIT(B3,,»,»)),NOT(COUNTIF($E$3:$E$7,TRIM(TEXTSPLIT(B3,,»,»))))))

    z — TRIM(TEXTSPLIT(B3,,»,»))

    LET(z,TRIM(TEXTSPLIT(B3,,»,»)),TEXTJOIN(«, «,TRUE,FILTER(z,NOT(COUNTIF($E$3:$E$7,z)))))

    Back to top

    Понравилась статья? Поделить с друзьями:
  • Ms excel elektron jadvali
  • Ms excel dasturining imkoniyatlari
  • Ms excel dasturida diagrammalar bilan ishlash
  • Ms excel dasturi imkoniyatlari
  • Movies that begin with the word no