Sub gubertu()
Dim Ws As Worksheet
With Application
.FindFormat.Clear
.FindFormat.Font.Color = 255
.ReplaceFormat.Clear
.ReplaceFormat.Font.ColorIndex = xlAutomatic
End With
For Each Ws In Worksheets
Ws.UsedRange.Replace "", "", xlPart, , , , True, True
Next Ws
With Application
.FindFormat.Clear
End With
For Each Ws In Worksheets
Ws.UsedRange.Replace "in (-)", "in (-)", xlPart, , , , False, True
Next Ws
Application.ReplaceFormat.Clear
End Sub