如何查找包含文本值的所有单元格,例如merchant_id,并将这些单元格的背景颜色更改为特定颜色?
答案 0 :(得分:1)
此宏将使用当前选定的范围并检查merchant_id
的每个单元格。如果是真的话,请将其标记为栗色。要选择特定颜色,最好的方法是录制宏并查看它创建的值。取这些数字并替换With
块
Sub MarkCellsInSelection()
For Each c In Selection
If c.Value = "merchant_id" Then
With c.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent2
.TintAndShade = 0.399975585192419
.PatternTintAndShade = 0
End With
End If
Next
End Sub