-2

I have a large spreadsheet with a number of cells containing text that have a "*" character at the end. I would like to find and replace this character and delete it. This solution doesn't seem to work in Excel 2010.

Howeitzer
  • 101

2 Answers2

0

I think you need something like:

=SUBSTITUTE(RANGE,"*","")

You could definitely put a cell range in there, such as:

=SUBSTITUTE(A1:Z2000,"*","")

And I suspect you could put a worksheet name in there?

0

Use the Replace function by pressing CTRL + H and searching for ~* replacing with a blank.

Wool
  • 68