我想首先声明我几乎没有编码经验。我在网上找到了一个 VBA 片段,用于突出显示整个选定范围(仅作为视觉指南):
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
Application.ScreenUpdating = False
' Clear the color of all the cells
Cells.Interior.ColorIndex = 0
With Target
' Highlight the entire column that contain the active cell
.EntireRow.Interior.ColorIndex = 8
End With
Application.ScreenUpdating = True
End Sub
我还想让光标跳转到“J”列。例如,在按“确定”后搜索包含“草莓浇头”字样的单元格后,包含该文本的单元格将变为活动状态,并且由于 VBA 代码,整行都会突出显示。
我需要处理的第一个单元格在“J”列中。我还可以选择 J 列以及突出显示的行吗?
非常感谢您抽出宝贵的时间,并感谢您提供的任何帮助。