+ Reply to Thread
Results 1 to 3 of 3

Replacing hilite color

  1. #1
    Tony Vella
    Guest

    Replacing hilite color

    I have a number of worksheets with some of the cells hi-lited bright yellow.
    I find this rather hard on the eyes and would like to replace the bright
    yellow hi-lite with grey. Can this be done automatically by some command?
    I am using Excel 97 on an XP Home machine. Thanks in advance.
    --
    Tony Vella in Ottawa, Canada


  2. #2
    Harald Staff
    Guest

    Re: Replacing hilite color

    Hi Tony, Ottawa

    Color palette is a workbook property. Try this little macro for a start, ran
    from a yellow cell:

    Sub Recolor()
    Dim r As Long, g As Long, b As Long
    Dim CelCol As Long
    CelCol = ActiveCell.Interior.ColorIndex
    If CelCol < 0 Then Exit Sub ' no color
    r = Val(InputBox("How much red ?(0 - 255):"))
    g = Val(InputBox("How much green ?(0 - 255):"))
    b = Val(InputBox("How much blue ?(0 - 255):"))
    ActiveWorkbook.Colors(CelCol) = RGB(r, g, b)
    End Sub

    (Several zeros or cancels will return black, so fill in sensible values)

    Copying palettes from other workbooks can be done in the Tools > Options >
    Color menu. For some theory on Excel color, see David's page
    http://www.mvps.org/dmcritchie/excel/colors.htm

    You may also consider upgading to 2007 in a year, that one will have lots of
    color capabilities.

    HTH. Best wishes Harald

    "Tony Vella" <tony.vella@rogers.com> skrev i melding
    news:2r6dnX0IwMZHA0HZnZ2dnUVZ_v6dnZ2d@giganews.com...
    > I have a number of worksheets with some of the cells hi-lited bright

    yellow.
    > I find this rather hard on the eyes and would like to replace the bright
    > yellow hi-lite with grey. Can this be done automatically by some command?
    > I am using Excel 97 on an XP Home machine. Thanks in advance.
    > --
    > Tony Vella in Ottawa, Canada
    >




  3. #3
    Dave Peterson
    Guest

    Re: Replacing hilite color

    Maybe you can do it manually.

    Tools|Options|Color tab
    select the color that you don't like (get the right one!)
    click modify
    choose a new color and ok you're way out.

    This is a workbook setting, so if you always want to change the same color to
    the same color, you could record a macro when you do it manually. Then just
    rerun that macro when you need to.

    Tony Vella wrote:
    >
    > I have a number of worksheets with some of the cells hi-lited bright yellow.
    > I find this rather hard on the eyes and would like to replace the bright
    > yellow hi-lite with grey. Can this be done automatically by some command?
    > I am using Excel 97 on an XP Home machine. Thanks in advance.
    > --
    > Tony Vella in Ottawa, Canada


    --

    Dave Peterson

+ 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