假设在a1
Range("a1").Select
With ActiveCell.Characters(Start:=1, Length:=3).Font
.Name = "仿宋_GB2312"
.FontStyle = "常规"
.Size = 10
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = 27
End With
With ActiveCell.Characters(Start:=4, Length:=3).Font
.Name = "仿宋_GB2312"
.FontStyle = "常规"
.Size = 10
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = 3
End With