+ Reply to Thread
Results 1 to 21 of 21

Conditional formatting limit

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    Conditional formatting limit

    Hello all,

    I have an excel-sheet with two worksheets one called "sheet1", this is where all data is stored, and "sheet2", where data from sheet1 can be evoked.

    I'm now looking for some code that get arounds the 3 conditions limit of conditional formatting. Most of the codes on internet, just do this but only when entered manually on the selected sheet. In my case all data is entered on sheet1 and are displayed by some formulas on sheet2. It is on sheet 2 where I would like the color change to happen.

    I found a piece of code that was said to do just that, but when testing it appears not to. It only updates the cell color when the concerning cell is clicke twice.

    i hope someone can help me.

    This is the code I found on the internet

    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim oCell As Range
    For Each oCell In Target
            Select Case oCell.Value
                 Case Is = "C"
                     oCell.Interior.ColorIndex = 3
                     Sheets("Sheet2").Range(oCell.Address).Interior.ColorIndex = 3
                 Case Is = "Z"
                     oCell.Interior.ColorIndex = 4
                     Sheets("Sheet2").Range(oCell.Address).Interior.ColorIndex = 4
                 Case Is = "V"
                     oCell.Interior.ColorIndex = 5
                     Sheets("Sheet2").Range(oCell.Address).Interior.ColorIndex = 5
                 Case Is = "Maternity"
                     oCell.Interior.ColorIndex = 7
                     Sheets("Sheet2").Range(oCell.Address).Interior.ColorIndex = 7
                 Case Else
                     oCell.Interior.ColorIndex = xlNone
                     Sheets("Sheet2").Range(oCell.Address).Interior.ColorIndex = xlNone
             End Select
        Next oCell
    End Sub
    Last edited by Jonathan78; 09-04-2009 at 06:19 PM.

  2. #2
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    re: Conditional formatting limit

    This code is triggered when somebody changes something on a page and only tests the cells which have been changed.

    How about we make a button on page 2 to refresh all formats?

  3. #3
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    re: Conditional formatting limit

    Sounds good Cheeky but how do you refresh all formats?

  4. #4
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    re: Conditional formatting limit

    Just a thought . . . not tested

    Why not place a volatile function like NOW() in an out of the way cell on sheet2, then in the worksheet_activate module force it to recalculate which should trigger the code.

    Private Sub Worksheet_Activate()
        Application.Calculate
    End Sub

  5. #5
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    re: Conditional formatting limit

    You make a macro which searches for all instances of C, Z, V and Maternity and applies the appropriate forrmat to every found instance...

    This will work best if you define a range to search, so that we don't hose the format for the whole sheet (select all the cells in the table which contains C, Z, etc. then, in the top left, just above "A" column heading type a name: "FormatRange" (without quotes).

    Now put this code into the worksheet:

    Sub AutoFormatRange()
    
    Dim vStrings(0 To 3, 0 To 1) As Variant
    Dim i As Integer
    Dim rString As Range
    Dim sFirstAddress As String
    
    vStrings(0, 0) = "C"
    vStrings(0, 1) = 3
    vStrings(1, 0) = "Z"
    vStrings(1, 1) = 4
    vStrings(2, 0) = "V"
    vStrings(2, 1) = 5
    vStrings(3, 0) = "Maternity"
    vStrings(3, 1) = 7
    
    
    With Me
        .Range("FormatRange").Interior.ColorIndex = xlNone
        For i = LBound(vStrings) To UBound(vStrings)
            Set rString = .Range("FormatRange").Find(vStrings(i, 0))
            If rString Is Nothing Then GoTo lNoString
                sFirstAddress = rString.Address
                Do
                    rString.Interior.ColorIndex = vStrings(i, 1)
                Set rString = .Range("FormatRange").FindNext(rString)
                Loop Until rString.Address = sFirstAddress
    lNoString:
        Next i
    End With
        
    End Sub
    CC

  6. #6
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    re: Conditional formatting limit

    Thanks for the replies you all.
    I tried your code Cheeky but get an compile error "Invalid use of Me keyword"

    I did what you said. First defined the range and called it "FormatRange" but nothing...

  7. #7
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    re: Conditional formatting limit

    As written, it needs to go in the Sheet module.
    Entia non sunt multiplicanda sine necessitate

  8. #8
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    Re: Conditional formatting limit

    I did. [forgot to mention that]

  9. #9
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Conditional formatting limit

    I'm thinking not

  10. #10
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    Re: Conditional formatting limit

    As written, it needs to go in the Sheet module.
    I did. [forgot to mention that]
    I don't want to patronise you, of course, but are you sure?
    Right-click sheet tab and select View code - paste in there.

    Tested befor posting and worked beautifully IMHO

  11. #11
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    Re: Conditional formatting limit

    Sorry for my ignorance guys, You were right I placed it in a standard module.
    Now that I placed it in the right place it still doesn't work properly.

    Like I mentioned in my first post sheet2 contains formulas which retrieve information from sheet1. it is in sheet1 where I update the cells. But the color of the cells on sheet2 should change.

    I placed both the code I mentioned in my first post and your code separately in the sheet-code and made a button which triggers your code.

    When I enter a "V" on sheet2 and press the button the color of the cell is changed indeed. But as I mentioned already sheet2 only contains formulas

  12. #12
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    Re: Conditional formatting limit

    oh no!

    how stupid of me

    how big is the range? We can test every cell individually but it will take time if the range is too big

    CC

  13. #13
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    Re: Conditional formatting limit

    The range is quite big E27:BA200.

  14. #14
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    Re: Conditional formatting limit

    Oh wait, it's not that bad...

    XL help:
    The settings for LookIn, LookAt, SearchOrder, and MatchByte are saved each time you use this method. If you don’t specify values for these arguments the next time you call the method, the saved values are used. Setting these arguments changes the settings in the Find dialog box, and changing the settings in the Find dialog box changes the saved values that are used if you omit the arguments. To avoid problems, set these arguments explicitly each time you use this method.
    Revised code, includes setting to look in cell values, not formulae:

    Sub AutoFormatRange()
    
    Dim vStrings(0 To 3, 0 To 1) As Variant
    Dim i As Integer
    Dim rString As Range
    Dim sFirstAddress As String
    
    vStrings(0, 0) = "C"
    vStrings(0, 1) = 3
    vStrings(1, 0) = "Z"
    vStrings(1, 1) = 4
    vStrings(2, 0) = "V"
    vStrings(2, 1) = 5
    vStrings(3, 0) = "Maternity"
    vStrings(3, 1) = 7
    
    
    With Me
        .Range("FormatRange").Interior.ColorIndex = xlNone
        For i = LBound(vStrings) To UBound(vStrings)
            Set rString = .Range("FormatRange").Find(vStrings(i, 0), LookIn:=xlValues, lookat:=xlWhole)
            If Not rString Is Nothing Then
                sFirstAddress = rString.Address
                Do
                    rString.Interior.ColorIndex = vStrings(i, 1)
                Set rString = .Range("FormatRange").FindNext(rString)
                Loop Until rString.Address = sFirstAddress
            End If
        Next i
    End With
        
    End Sub
    Also includes revision to avoid unnecessary label, an improvement I achieved with no help from anyoen else.

    Please try this.

    CC

  15. #15
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    Re: Conditional formatting limit

    CC this is great, You are brilliant. It works like a charm.
    Thank you very much. You really helped me with this code.

  16. #16
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    Re: Conditional formatting limit

    CC, I tried to change one of the cases into something like "1 To 10" but it didn't work.

    Is it possible to amend one of the rules, so it will change the color of cells with a number between 1 and 10?

  17. #17
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    Re: Conditional formatting limit

    BTW is there a way to let this code overrule standard Conditional Formatting rules?

  18. #18
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Conditional formatting limit

    The code has the equivalent result of formatting manually. Conditional formatting overrides manual formatting.

  19. #19
    Forum Expert
    Join Date
    08-27-2008
    Location
    England
    MS-Off Ver
    2010
    Posts
    2,561

    Re: Conditional formatting limit

    You could use it to remove conditional formatting - but not temporarily override it, which I think is the point. If you were feeling particularly obtuse you could use a spare hidden sheet to hold conditional format info - but this would be a lot of work for very little reward...

    re: ranges of numbers, not with this code, but you could use conditional formatting for that, which, as we've discussed, overrides normal formatting

    CC

  20. #20
    Forum Contributor
    Join Date
    08-19-2009
    Location
    Netherlands, Amsterdam
    MS-Off Ver
    Excel 2010
    Posts
    585

    Re: Conditional formatting limit

    I see, Thanks again for your help CC

+ 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