小白求助。EX中可以实现让光标所在行、列高亮的同时不清除原有表中的填充的颜色吗,求大神改一下代码
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
With Target
.Parent.Cells.Interior.ColorIndex = xlNone.
EntireRow.Interior.ColorIndex = 6.
EntireColumn.Interior.ColorIndex = 6
End WithEnd Sub
可以的话随便告诉我一下这些代码代表什么意思😂
感谢!