I guessing that you really meant apostrophe (or single quote).
And you didn't want to replace it with spaces--just get rid of it.
If those are true, you could use something like:
Select an empty cell
copy it
Select your range to fix
Edit|paste special|check Add
But if you wanted to do it lots of times, maybe a macro would be more
convenient:
Option Explicit
Sub testme()
Dim myRng As Range
Dim myCell As Range
Set myRng = Nothing
On Error Resume Next
Set myRng = Intersect(Selection, Selection.Cells _
.SpecialCells(xlCellTypeConstants, xlTextValues))
On Error GoTo 0
If myRng Is Nothing Then
MsgBox "no text constants found"
Exit Sub
End If
For Each myCell In myRng.Cells
myCell.Value = myCell.Value
Next myCell
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.