Cursor Colors in Excel

  • Thread starter Thread starter Bruce
  • Start date Start date
In a ThisWorkbook Module put:

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, _
ByVal Target As Excel.Range)
On Error Resume Next
Sh.Cells.Interior.ColorIndex = xlColorIndexNone
Target.Interior.ColorIndex = 6 ' yellow - change as needed
End Sub

Is this what you mean?
 
Bruce

There is no way to do this in Excel only.

Mouse pointer colors/shapes are changed via Control Panel>Mouse.

This is a global Windows Setting and not restricted just to Excel.

Gord Dibben Excel MVP
 
Back
Top