Excel如何设置执行复制操作后单元格自动改变颜色?
发布网友
发布时间:2022-06-22 01:20
我来回答
共1个回答
热心网友
时间:2022-07-07 11:13
用vba
Private Sub Worksheet_SelectionChange(ByVal Target As Range) '自动复制到 登记信息
Cells.Interior.ColorIndex = xlNone
Dim tr, tc
tr = Target.Row
tc = Target.Column
If tr >= 1 Then
Rows(tr).Interior.ColorIndex = 4
End If
End Sub追问
添加后显示无效的过程名…
追答
你用的WPS?