同じ位置で処理するのか、別のセルに出力するのかわかりませんがどちらでも同じような感じ、
G列に展開します。
Sub test()
Dim i As Long, j As Long
Range(\u0026quot;B3:D7\u0026quot;).Copy Range(\u0026quot;G3\u0026quot;)
For i = 3 To 7
For j = Len(Cells(i, 9)) To 1 Step -1
With Cells(i, 9).Characters(j, 1)
If .Font.Color = vbRed Then
.Text = \u0026quot;\u0026quot;
End If
End With
Next
Next
End Sub