Sub Range_Cell_VER()
Dim rng As Range, p As Range, vVals As Variant
Set p = ActiveSheet.UsedRange
vVals = p.Value
With Application
.FindFormat.Clear
.ReplaceFormat.Clear
.FindFormat.Locked = True
.ReplaceFormat.Interior.Color = RGB(255, 0, 0)
Cells.Replace "*", "#N/A", , , , , True, True
Set rng = Cells.SpecialCells(2, 16)
.FindFormat.Clear
.ReplaceFormat.Clear
End With
MsgBox rng.Address
p = vVals
End Sub