Results 1 to 15 of 15

Conditional formatting based on cell value in row above

Threaded View

  1. #1
    Registered User
    Join Date
    08-12-2004
    Location
    Mendoza, Argentina
    MS-Off Ver
    Office Professional 2003
    Posts
    89

    Conditional formatting based on cell value in row above

    I am trying to conditional format all rows (in range) based on the value of a cell in the row above. I have got this code which is incorrect but I don't know why. Debugging indicates that there is a problem with the line starting Range("A2:M2).Cell .......... But it seems logical to me.

    Sub mycolour()
    Worksheets("Names").Activate
    Set myrange = Range("A2:M19")
    Range("A2:M2").Cell.EntireRow.Interior.Color = RGB(255, 255, 135)      'set colour of first data row - colour 1
        For Each Row In myrange                                                             ' check next row for colour
            If A3 = A2 Then
                Cell.EntireRow.Interior.Color = RGB(255, 255, 135)                ' colour 1
            Else
                Cell.EntireRow.Interior.Color = RGB(255, 204, 153)                ' colour 2
            End If
        Next
    End Sub
    If the value of A3 = value of A2 then row (or range) should be colour 1 else change colour to colour 2
    If the value of A4 = value of A3 then colour 1 or change to colour 2.

    Thus, rows 2, 3, 4,5 may be colour 1.
    Row 6 may be colour 2 because the value in A5 is not the same as A6
    Row 7 returns to colour 1 because A7 is not the same value as A6 ..... and so on.

    Where is the error in my code?

    Many thanks in advance.
    Last edited by thadacto; 02-14-2013 at 07:46 AM.

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