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 row and column that contain the active cell
.EntireRow.Interior.ColorIndex = 8
.EntireColumn.Interior.ColorIndex = 8
End With
Application.ScreenUpdating = True
End Sub
'말랑말랑한 이야기' 카테고리의 다른 글
[Pi] 재구동 시, mac 어드레스 변경 금지 (0) | 2021.09.29 |
---|---|
[Raspberry Pi] 라즈베리파이 고정 IP 할당 (0) | 2021.07.02 |
[Pi] disable chromium update dialog on raspbian buster (0) | 2021.02.09 |
[CentOS] PPTP - VPN 연결 오류 시 (0) | 2021.01.31 |
[CentOS7] 부팅 시, 모드 전환 (0) | 2021.01.24 |