반응형
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.ScreenUpdating = False
If Target.Cells.Count > 1 Then Exit Sub
Dim oColumnscount As Long
oColumnscount = Cells(15, Columns.Count).End(xlToLeft).Column
'//Clear the color of all cells
range("A16:Z & oColumnscount").Interior.ColorIndex = 0
With Target
'//Highlight row and column of the selected cell
.EntireRow.Interior.ColorIndex = 38
'// Highlight row of the selected cell
'//.EntireColumn.Interior.ColorIndex = 24
End With
End Sub
'VBA Code' 카테고리의 다른 글
문자열 응용 하기 (0) | 2023.01.01 |
---|---|
Cells 값 비교 하기 (0) | 2022.12.16 |
엑셀 파일을 열면, 프로그램을 자동으로 실행하는 코드 (0) | 2022.12.13 |
DB Query 결과 엑셀로 가져오기 (0) | 2022.12.06 |
배열을 사용하여 Drop Down List 만들기 (0) | 2022.12.05 |