+ Reply to Thread
Results 1 to 2 of 2

Have gridlines appear around mouse cursor in Excel

  1. #1
    James Grotjohn
    Guest

    Have gridlines appear around mouse cursor in Excel

    In Excel the gridlines clutter up the look of the screen. But they are very
    useful in knowing where to click to make changes and select cells. I would
    like to have the gridlines be invisible except in a floating area around the
    mouse cursor.

    ----------------
    This post is a suggestion for Microsoft, and Microsoft responds to the
    suggestions with the most votes. To vote for this suggestion, click the "I
    Agree" button in the message pane. If you do not see the button, follow this
    link to open the suggestion in the Microsoft Web-based Newsreader and then
    click "I Agree" in the message pane.

    http://www.microsoft.com/office/comm...lic.excel.misc

  2. #2
    Don Guillett
    Guest

    Re: Have gridlines appear around mouse cursor in Excel

    Be careful what you ask for. This puts grid lines and borders around
    whatever the mouse selects.
    tools>options>view>gridlines>uncheck
    right click sheet tab>view code>insert this

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Cells.Borders.LineStyle = xlNone
    With Selection
    .Borders.LineStyle = xlContinuous
    .BorderAround ColorIndex:=3, Weight:=xlThick
    End With
    End Sub

    --
    Don Guillett
    SalesAid Software
    [email protected]
    "James Grotjohn" <James [email protected]> wrote in message
    news:[email protected]...
    > In Excel the gridlines clutter up the look of the screen. But they are
    > very
    > useful in knowing where to click to make changes and select cells. I
    > would
    > like to have the gridlines be invisible except in a floating area around
    > the
    > mouse cursor.
    >
    > ----------------
    > This post is a suggestion for Microsoft, and Microsoft responds to the
    > suggestions with the most votes. To vote for this suggestion, click the "I
    > Agree" button in the message pane. If you do not see the button, follow
    > this
    > link to open the suggestion in the Microsoft Web-based Newsreader and then
    > click "I Agree" in the message pane.
    >
    > http://www.microsoft.com/office/comm...lic.excel.misc




+ 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