Excel - 查找包含值并更改背景颜色的所有单元格

时间:2013-09-16 18:15:50

标签: macos excel function search background-color

如何查找包含文本值的所有单元格,例如merchant_id,并将这些单元格的背景颜色更改为特定颜色?

1 个答案:

答案 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