VBA字体颜色代码
发布网友
发布时间:2022-05-10 15:51
我来回答
共1个回答
热心网友
时间:2023-10-14 11:19
严格按步骤操作:
右键点工作表的名字(在左下角呢,如Sheet1),查看代码,粘贴如下代码:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("BZ" & Selection.Row).Font.Color = vbRed Then
Selection.EntireRow.Font.ColorIndex = xlAutomatic
Else
Selection.EntireRow.Font.Color = vbRed
End If
End Sub
回到工作表,功能实现。