12 C
London
Sunday, May 12, 2024
HomeSoftware TutorialsExcelHow to Search for an Asterisk in a Cell in Excel

How to Search for an Asterisk in a Cell in Excel

Related stories

Learn About Opening an Automobile Repair Shop in India

Starting a car repair shop is quite a good...

Unlocking the Power: Embracing the Benefits of Tax-Free Investing

  Unlocking the Power: Embracing the Benefits of Tax-Free Investing For...

Income Splitting in Canada for 2023

  Income Splitting in Canada for 2023 The federal government’s expanded...

Can I Deduct Home Office Expenses on my Tax Return 2023?

Can I Deduct Home Office Expenses on my Tax...

Canadian Tax – Personal Tax Deadline 2022

  Canadian Tax – Personal Tax Deadline 2022 Resources and Tools...

You can use the following formula to check if a given cell in Excel contains an asterisk anywhere in the cell:

=IF(ISNUMBER(SEARCH("~*", A2)), "Yes", "No")

This particular formula checks if cell A2 contains an asterisk and returns “Yes” if it does.

Otherwise, it returns “No.”

Note: The tilde symbol (~) in Excel indicates that the next character is a literal.

The following example shows how to use this formula in practice.

Example: Search for Asterisk in Cell in Excel

Suppose we have the following dataset that contains information about various basketball players:

An asterisk at the end of the team name indicates that the player is an All-Star.

Suppose we would like to search each team name in column A to determine if each player is an All-Star or not.

To do so, we can type the following formula into cell C2:

=IF(ISNUMBER(SEARCH("~*", A2)), "Yes", "No")

We can then click and drag this formula down to each remaining cell in column C:

Excel search for asterisk in cell

The formula returns “Yes” if the team name contains an asterisk.

Otherwise, it returns “No” if no asterisk is found.

For example, we can see:

  • Mavs* does contain an asterisk.
  • Nets does not contain an asterisk.
  • Warriors does not contain an asterisk.

And so on.

Note that if you’d like to return values other than “Yes” and “No”, simply replace these values in the formula with whatever values you’d like.

Also note that you can use the following formula to return TRUE or FALSE to indicate whether a cell contains an asterisk or not:

=ISNUMBER(SEARCH("~*", A2))

The following screenshot shows how to use this formula in practice:

The formula returns TRUE or FALSE to indicate whether each team name contains an asterisk or not.

Additional Resources

The following tutorials explain how to perform other common tasks in Excel:

Excel: How to Write a Case Statement
Excel: How to Find Unique Values from Multiple Columns
Excel: How to Match Two Columns and Return a Third

Subscribe

- Never miss a story with notifications

- Gain full access to our premium content

- Browse free from up to 5 devices at once

Latest stories