我希望所有粗体的标题都在文本后面加上“总计”。我不知道为什么这个公式不起作用。
之前-这是什么样子x1c 0d1x
我希望它看起来像这样
这是我做的公式,我不知道是什么原因造成的:
Sub Test()
Dim rng As Range
Dim cell As Range
Dim i As Integer
Dim text As String
Set rng = ws.Range("C1:C2000")
For Each cell In rng
If Not IsEmpty(cell.Value) And cell.Font.Bold Then
For i = LBound(words) To UBound(words)
If cell.Characters(Start:=InStr(cell.Value, words(i)), Length:=Len(words(i))).Font.Bold Then
words(i) = words(i) & " Total"
End Sub
字符串
2条答案
按热度按时间kkbh8khc1#
我试了一下,效果很好
字符串
oyxsuwqo2#
words
没有被赋值。使用Option Explicit
可以帮助避免这种类型的错误。字符串