Sub ToUscore()
Dim i As Long
With ActiveCell
For i = 1 To Len(.Value)
If .Characters(i, 1).Font.ColorIndex = 3 Then
.Characters(i, 1).Font.ColorIndex = xlAutomatic
.Characters(i, 1).Font.Underline = xlUnderlineStyleSingle
End If
Next i
End With
End Sub
Sub ToUscore()
Dim i As Long, c As Range
For Each c In ActiveSheet.UsedRange
With c
For i = 1 To Len(.Value)
If .Characters(i, 1).Font.ColorIndex = 3 Then
.Characters(i, 1).Font.ColorIndex = xlAutomatic
.Characters(i, 1).Font.Underline = xlUnderlineStyleSingle
End If
Next i
End With
Next c
End Sub