34

I am trying to find and replace the * (star, or shift+8) character in a bunch of formulas in Excel 2007. * of course matches the ENTIRE contents of the cell, which is not what I want. How do I disable this behavior?

Zach
  • 505

2 Answers2

64

Find and Replace (CTRL + H)

Search for ~*

Replace with whatever.

Cheers!

rlemon
  • 697
3

If you are doing this in code, you can look for CHAR(42), which is the numeric code for the * symbol.

Depending on how you do it, you should even be able to use the CHAR(42) in a worksheet formula.

GSTD
  • 295