Boa noite, preciso montar uma macro que no excel mude a cor da linha quando eu mudar o cursor. Estou atualmente utilizando a macro abaixo, mas dessa maneira está selecionando toda a linha, quero que busque somente até a coluna que está sendo utilizada na planilha, podem me ajudar?
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
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 = 44
End With
Application.ScreenUpdating = True
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
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 = 44
End With
Application.ScreenUpdating = True
End Sub