• Highlight Row & Colum upon cell Select (2000)

    Home » Forums » AskWoody support » Productivity software by function » MS Excel and spreadsheet help » Highlight Row & Colum upon cell Select (2000)

    Author
    Topic
    #359098

    Someone asked me this, and I don’t know the answer. So, on to the guru’s I go. She wants the row and column to be highlighted when she selects a cell. For example, if she is in cell D14, she wants all of column D (up to row 14) to be highlighted, as well as row 14 (from A to D) to be highlighted. So that wherever she is in the spreadsheet, there will be a row and column highlighted to the active cell.

    Viewing 1 reply thread
    Author
    Replies
    • #537357

      Check out this This Thread, wher e you will find a number of approaches.

      Andrew C

      • #537359

        Thanks Andrew. That did have some good ideas. I was hoping there was an Option under Tools or something, but I can work with what was posted.

        Thanks!

    • #537365

      If I understand your question correctly, the following code in the Workbook SelectionChange event routine in the module behind the workbook object will do it:

      Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Excel.Range)
          Application.EnableEvents = False
          Union(Target.EntireRow, Target.EntireColumn).Select
          Target.Activate
          Application.EnableEvents = True
      End Sub
      
    Viewing 1 reply thread
    Reply To: Highlight Row & Colum upon cell Select (2000)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: