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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top