I have a macro in my workbook that cleans, and sorts a paste from another workbook.

Part of this macro is supposed to remove any CHAR(32) and replace it with a space.
After running the macro, there are a few cells with CHAR(32) remaining.

For example, a CODE check on one particular cell reveals the following:
(Reading cell from RIGHT to LEFT) : 101....116....97.... 116....83.... 32....111....103....101....105....68.... 32....110....97....83

If I try to EDIT the cell, and REPLACE [Find what: CHAR(32) ] with [Replace with:" "] --- Excel tells me that it cannot find a match.
(And...no, using Chr(32) in the [Find what:] field, doesn't work, either).

Here is the section of the macro that is supposed to remove CHAR(32):

Range("A83:C168").Select
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Selection.Replace What:=Chr(32), Replacement:=" ", _
LookAt:=xlPart, SearchOrder:=xlByRows, MatchCase:=False
On Error Resume Next
For Each cell In Intersect(Selection, _
Selection.SpecialCells(xlConstants, xlTextValues))
cell.Value = Application.Trim(cell.Value)
Next cell
On Error GoTo 0
Application.Calculation = xlCalculationAutomatic
Application.ScreenUpdating = True



There are three other incidents that are removed with similar code within the same macro:.....CHAR(160)..." U"...and "(N)".
Each of these incidents are successfully removed.

Clearly, there are TWO occurrences of CHAR(32) in the cell mentioned, above.
Why isn't Excel recognizing these characters...??....