+ Reply to Thread
Results 1 to 4 of 4

Conditional Formatting Again

Hybrid View

  1. #1
    Registered User
    Join Date
    12-04-2006
    Posts
    2

    Conditional Formatting Again

    Sorry if this has been asked before, I want a cell colour to change if I put 4 words in (was ok when I only had three!). If I put say Bob, Paul, Bill or Mark in I want it to change colour, can this be done with CF?

    Cheers

  2. #2
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by Jack_Daw
    Sorry if this has been asked before, I want a cell colour to change if I put 4 words in (was ok when I only had three!). If I put say Bob, Paul, Bill or Mark in I want it to change colour, can this be done with CF?

    Cheers
    Hi, just a few times, in your sheet, rightmouse the tab and View Code, copy and paste this code
    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim iColour As Integer
    Dim iRow As long, iColumn As Integer
        If Not Intersect(Target, Range("A:B")) Is Nothing Then
            iColour = 0
            iRow = Target.Row
            iColumn = Target.Column
                If Cells(iRow, iColumn).Value = "John" Then
                iColour = 4
                ElseIf Cells(iRow, iColumn).Value = "Jack" Then
                iColour = 5
                ElseIf Cells(iRow, iColumn).Value = "Fred" Then
                iColour = 6
                ElseIf Cells(iRow, iColumn).Value = "Joan" Then
                iColour = 45
                ElseIf Cells(iRow, iColumn).Value = "Mary" Then
                iColour = 3
                ElseIf Cells(iRow, iColumn).Value = "Jean" Then
                iColour = 1
            End If
            Cells(iRow, iColumn).Interior.ColorIndex = iColour
         End If
    End Sub
    and amend the names and colours to suit.

    hth
    ---
    Si fractum non sit, noli id reficere.

  3. #3
    Registered User
    Join Date
    12-04-2006
    Posts
    2
    Great thanks for that, found a quick cheat, the cell next to it has a date in it if I use any of the names. So I just changed the names cell to fill in if the date cell was greater than 0.

    Will use yours though as has far greater use and flexibility

    Thanks a lot for your quick answer

  4. #4
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    Quote Originally Posted by Jack_Daw
    Great thanks for that, found a quick cheat, the cell next to it has a date in it if I use any of the names. So I just changed the names cell to fill in if the date cell was greater than 0.

    Will use yours though as has far greater use and flexibility

    Thanks a lot for your quick answer
    good to see the 'cheat'
    and thanks for the response.
    ---

+ 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