我想更改单元格中最后一个字符的字体。 为此,我尝试了下面的代码。但不行。 请帮忙。
{{1}}
答案 0 :(得分:0)
现在回答:) 以下是解决方案:
Sheet1.Cells(i, 9).Characters(Len(Sheet1.Cells(i, 9).Value), 1).Font.ColorIndex = 3
感谢。
答案 1 :(得分:0)
请尝试这个:
Sub ColorTextv()
Dim i As Long
Dim text As String
' Change as per your requrement. I used it for testing purpose
text = Cells(1, 9).Value
For i = 1 To Len(text)
If i = Len(text) Then
Cells(1, 9).Characters(i, 9).Font.ColorIndex = 3
'You can change by mentioning color also
'Cells(1, 9).Characters(i, 9).Font.Color = vbRed
End If
Next
End Sub