+ Reply to Thread
Results 1 to 3 of 3

Cursor highlighting

  1. #1
    mukbibliophile
    Guest

    Cursor highlighting

    How do I make cursor highlighted border of cells bold?

  2. #2
    Rob van Gelder
    Guest

    Re: Cursor highlighting

    An example to work from:
    http://www.xl-expert.com/html_pages/condFormatting.html


    --
    Rob van Gelder - http://www.vangelder.co.nz/excel


    "mukbibliophile" <[email protected]> wrote in message
    news:[email protected]...
    > How do I make cursor highlighted border of cells bold?




  3. #3
    Bob Phillips
    Guest

    Re: Cursor highlighting

    I may be mis-reading what you want to do, but give this a try

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Cells.FormatConditions.Delete
    With Target
    .FormatConditions.Add Type:=xlExpression, Formula1:="TRUE"
    With .FormatConditions(1)
    With .Borders(xlTop)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = 5
    End With
    With .Borders(xlBottom)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = 5
    End With
    End With
    .FormatConditions(1).Interior.ColorIndex = 20
    End With

    End Sub


    'This is worksheet event code, which means that it needs to be
    'placed in the appropriate worksheet code module, not a standard
    'code module. To do this, right-click on the sheet tab, select
    'the View Code option from the menu, and paste the code in.


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "mukbibliophile" <[email protected]> wrote in message
    news:[email protected]...
    > How do I make cursor highlighted border of cells bold?




+ 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