Closed Thread
Results 1 to 10 of 10

Select all cell with the same format

Hybrid View

  1. #1
    Registered User
    Join Date
    02-05-2005
    Posts
    4

    Select all cell with the same format

    Can someone please help me. What I need to do seems simple but I can't find info anywhere.

    I want to select all cells that are green for example. How can i do this with VB or an alternative?


    Thanks for your help

  2. #2
    Registered User
    Join Date
    08-24-2005
    Location
    Philippines
    Posts
    75

    Talking

    This can be done if the cells you are trying to select are contiguous....

    Range("E5:G10).Select

    but if your "green" cells are scattered, e.g. only cells C2, F6 and H7 are green, then... i can't help you with that....

    Quote Originally Posted by JamieMorien
    Can someone please help me. What I need to do seems simple but I can't find info anywhere.

    I want to select all cells that are green for example. How can i do this with VB or an alternative?


    Thanks for your help

  3. #3
    Bob Phillips
    Guest

    Re: Select all cell with the same format

    Dim rng As Range
    Dim cell As Range
    Set rng = Nothing
    For Each cell In ActiveSheet.UsedRange
    If cell.Interior.ColorIndex = 10 Then
    If rng Is Nothing Then
    Set rng = cell
    Else
    Set rng = Union(rng, cell)
    End If
    End If
    Next cell
    If Not rng Is Nothing Then
    rng.Select
    End If


    --

    HTH

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


    "T-容x" <T-ex.1ub8ui_1124957126.2941@excelforum-nospam.com> wrote in message
    news:T-ex.1ub8ui_1124957126.2941@excelforum-nospam.com...
    >
    > This can be done if the cells you are trying to select are
    > contiguous....
    >
    > Range("E5:G10).Select
    >
    > but if your "green" cells are scattered, e.g. only cells C2, F6 and H7
    > are green, then... i can't help you with that....
    >
    > JamieMorien Wrote:
    > > Can someone please help me. What I need to do seems simple but I can't
    > > find info anywhere.
    > >
    > > I want to select all cells that are green for example. How can i do
    > > this with VB or an alternative?
    > >
    > >
    > > Thanks for your help

    >
    >
    > --
    > T-容x
    > ------------------------------------------------------------------------
    > T-容x's Profile:

    http://www.excelforum.com/member.php...o&userid=26572
    > View this thread: http://www.excelforum.com/showthread...hreadid=398943
    >




  4. #4
    Registered User
    Join Date
    02-05-2005
    Posts
    4

    Thank you but...

    I am an ignoramus. How do I implement this code? I normally just start and stop a macro recording and then paste the code in. Doesn't seem to work. What steps need to lead up to inserting this text? Thanks

  5. #5
    Registered User
    Join Date
    08-24-2005
    Location
    Philippines
    Posts
    75

    Smile

    Using Bob Phillips' code (or your code, or my code...), go to the VBA editor (I assume, and I'm pretty sure you already know how to do this). Insert a new Module by clicking 'Module' in the 'Insert' menu. A new child window will appear (and you'll notice in the Project Explorer a new entry in the Modules folder). Just type the following in the new window:

    Sub ILoveGreen()
    'Bob Phillips' code goes here
    End Sub

    Now, you have a new subroutine called 'ILoveGreen'. To use it, you have to "hook" (is the a right term?) it to a control. Maybe you can add a button in the sheet or create a new toolbar/menu. Then assign to the control (button/menu) the ILoveGreen macro...



    Quote Originally Posted by JamieMorien
    I am an ignoramus. How do I implement this code? I normally just start and stop a macro recording and then paste the code in. Doesn't seem to work. What steps need to lead up to inserting this text? Thanks

  6. #6
    Dave Peterson
    Guest

    Re: Select all cell with the same format

    Start recording a macro and then quit recording.

    Then you'll have the shell of the macro.

    You can use tools|macros|macro
    select your "dummy" macro and click the Edit button.

    Paste Bob's code after this line:

    Sub Macro1()

    but before the "end sub" line.

    Then back to excel.

    select the worksheet you want and
    tools|macro|macros
    select that macro
    and click run.

    ====

    But you'll want to make sure that this line is correct:

    If cell.Interior.ColorIndex = 10 Then

    Select a cell with the color green background you like.
    then back to the VBE (alt-f11)
    hit ctrl-g (to see the immediate window)

    Type this and hit enter:
    ?activecell.Interior.ColorIndex

    You'll see a number. If it's 10, you're done. If it's not, you'll have to use
    that number in that line of code.



    JamieMorien wrote:
    >
    > I am an ignoramus. How do I implement this code? I normally just start
    > and stop a macro recording and then paste the code in. Doesn't seem to
    > work. What steps need to lead up to inserting this text? Thanks
    >
    > --
    > JamieMorien
    > ------------------------------------------------------------------------
    > JamieMorien's Profile: http://www.excelforum.com/member.php...o&userid=19499
    > View this thread: http://www.excelforum.com/showthread...hreadid=398943


    --

    Dave Peterson

  7. #7
    Registered User
    Join Date
    02-05-2005
    Posts
    4

    Thank you

    Excellent it works fine...my problem was getting the right colour code. Thanks

  8. #8
    Registered User
    Join Date
    12-15-2008
    Location
    india
    Posts
    7

    excellent buddy,,


    Very clear answer


    Quote Originally Posted by Dave Peterson View Post
    Start recording a macro and then quit recording.

    Then you'll have the shell of the macro.

    You can use tools|macros|macro
    select your "dummy" macro and click the Edit button.

    Paste Bob's code after this line:

    Sub Macro1()

    but before the "end sub" line.

    Then back to excel.

    select the worksheet you want and
    tools|macro|macros
    select that macro
    and click run.

    ====

    But you'll want to make sure that this line is correct:

    If cell.Interior.ColorIndex = 10 Then

    Select a cell with the color green background you like.
    then back to the VBE (alt-f11)
    hit ctrl-g (to see the immediate window)

    Type this and hit enter:
    ?activecell.Interior.ColorIndex

    You'll see a number. If it's 10, you're done. If it's not, you'll have to use
    that number in that line of code.



    JamieMorien wrote:
    >
    > I am an ignoramus. How do I implement this code? I normally just start
    > and stop a macro recording and then paste the code in. Doesn't seem to
    > work. What steps need to lead up to inserting this text? Thanks
    >
    > --
    > JamieMorien
    > ------------------------------------------------------------------------
    > JamieMorien's Profile: http://www.excelforum.com/member.php...o&userid=19499
    > View this thread: http://www.excelforum.com/showthread...hreadid=398943


    --

    Dave Peterson

  9. #9
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    This post is 3 year's old!
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

Closed 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