+ Reply to Thread
Results 1 to 2 of 2

how create cursor that highlights total row/column at all times

  1. #1
    just me
    Guest

    how create cursor that highlights total row/column at all times

    how do i create a cursor that at all times highlights the row/column that i
    am working in?

  2. #2
    Bernie Deitrick
    Guest

    Re: how create cursor that highlights total row/column at all times

    Copy the code below, right click the sheet tab, select "View Code" and paste
    the code into the window that appears. This will work when you are arrowing
    around the sheet, or using your mouse. It won't work if you hit enter to
    change the activecell.

    HTH,
    Bernie
    MS Excel MVP

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Application.EnableEvents = False
    Union(Target.EntireColumn, Target.EntireRow).Select
    Target.Activate
    Application.EnableEvents = True
    End Sub



    "just me" <just me@discussions.microsoft.com> wrote in message
    news:F063E6F7-17FE-4AE5-A2DC-F67DC2728575@microsoft.com...
    > how do i create a cursor that at all times highlights the row/column that
    > i
    > am working in?




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1