+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Registered User
    Join Date
    11-24-2009
    Location
    OSLO
    MS-Off Ver
    Excel 2003
    Posts
    14

    Classify by textcolour?

    I have a column with black and red text. I want to remove all occurences of red text (the entire row). Is that possible?

    B

  2. #2
    Valued Forum Contributor JeanRage's Avatar
    Join Date
    03-02-2009
    Location
    Nice, France
    MS-Off Ver
    Excel 2003
    Posts
    705

    Re: Classify by textcolour?

    Hi,

    You can adjust the following macro to your specifics ...
    Sub Macro1()
    Dim c As Range
    For Each c In ActiveSheet.Range("A1:K12")
    If c.Font.ColorIndex = 3 Then
    c.Font.ColorIndex = 0
    End If
    Next c
    End Sub
    HTH

  3. #3
    Forum Contributor marc5354's Avatar
    Join Date
    11-10-2009
    Location
    India
    MS-Off Ver
    Excel 2003 & Excel 2010
    Posts
    197

    Re: Classify by textcolour?

    Hello campbell1

    Your post does not comply with Rule 2 of our Forum RULES.

    Don't post a question in the thread of another member -- start your own thread. If you feel it's particularly relevant, provide a link to the other 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.2.0