+ Reply to Thread
Results 1 to 3 of 3

Filter option.

  1. #1
    vishu
    Guest

    Filter option.

    I have some text in different cell with different background color.
    I want to see the cells which has common background color.
    Is there any filter option in excel to those cells.

  2. #2
    Bob Phillips
    Guest

    Re: Filter option.

    No, not yet (it's on Ron's EasyFilter to do list).

    Add a helper column and a UDF. The UDF would be

    Function ColorIndex(rng As Range)
    ColorIndex = rng.Interior.ColorIndex
    End Function

    add this i the helper column

    =ColorIndex(A1) and copy down

    Then filter on the helper column

    If you don't want to remember the colour index codes, use something like

    =ColorIndex(A1) = ColorIndex($A$1)

    where the second part refers to the cell colour you wish to test. This will
    return True or False for all cells, and filter on that instead.

    --

    HTH

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


    "vishu" <vishu@discussions.microsoft.com> wrote in message
    news:602216EE-ABD5-4255-A0A6-F1AB82C8A7D2@microsoft.com...
    > I have some text in different cell with different background color.
    > I want to see the cells which has common background color.
    > Is there any filter option in excel to those cells.




  3. #3
    Ron de Bruin
    Guest

    Re: Filter option.

    Hi Bob

    >> No, not yet (it's on Ron's EasyFilter to do list).

    This is the first thing I add to the Add-in Bob

    Seems to be a hot item


    --
    Regards Ron de Bruin
    http://www.rondebruin.nl



    "Bob Phillips" <bob.phillips@notheretiscali.co.uk> wrote in message news:%234PJYwIKFHA.2132@TK2MSFTNGP14.phx.gbl...
    > No, not yet (it's on Ron's EasyFilter to do list).
    >
    > Add a helper column and a UDF. The UDF would be
    >
    > Function ColorIndex(rng As Range)
    > ColorIndex = rng.Interior.ColorIndex
    > End Function
    >
    > add this i the helper column
    >
    > =ColorIndex(A1) and copy down
    >
    > Then filter on the helper column
    >
    > If you don't want to remember the colour index codes, use something like
    >
    > =ColorIndex(A1) = ColorIndex($A$1)
    >
    > where the second part refers to the cell colour you wish to test. This will
    > return True or False for all cells, and filter on that instead.
    >
    > --
    >
    > HTH
    >
    > RP
    > (remove nothere from the email address if mailing direct)
    >
    >
    > "vishu" <vishu@discussions.microsoft.com> wrote in message
    > news:602216EE-ABD5-4255-A0A6-F1AB82C8A7D2@microsoft.com...
    >> I have some text in different cell with different background color.
    >> I want to see the cells which has common background color.
    >> Is there any filter option in excel to those cells.

    >
    >




+ 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