+ Reply to Thread
Results 1 to 11 of 11

Want to have Dynamic Conditional Formatting?

Hybrid View

  1. #1
    Registered User
    Join Date
    11-03-2008
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    2,521

    Want to have Dynamic Conditional Formatting?

    Want to have Dynamic Conditional Formatting?

    I have a situation in which I need to use Multiple Colours and therefore it cannot be done in the regular 3 conditions or not in 2007 where you get 7 condtions for Conditional Formatting...
    (I have Office 2003 Installed)

    I have several activities which are denoted by different colours...
    These activities are certainly more than 7 so this cannot be achieved by the regular ways...

    What I want is to get the same Colour for the entire strip where the condition matches for that Activity...

    For Ex:
    In cell B2 = Data Entry Fill Colur Yellow then
    wherever the condition matches it should get coloured Yellow..in the Row 2.
    If I change the Colour to Red then the colour should change to Red in the matching cells...

    Basically Matching Cell Colour = Fill Colour of Column B and Row 2..

    I do not know how to explain this more, hope I have been able to put it correctly...





  2. #2
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284
    Excel 2007 has unlimited conditions in CF.

    
    '-----------------------------------------------------------------
    Private Sub Worksheet_Change(ByVal Target As Range)
    '-----------------------------------------------------------------
    Const WS_RANGE As String = "H1:H10"    '<=== change to suit
    
        On Error GoTo ws_exit:
        Application.EnableEvents = False
        If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
            With Target
                Select Case .Value
                    Case 1: .Entirerow.Interior.ColorIndex = 3    'red
                    Case 2: .Entirerow.Interior.ColorIndex = 6    'yellow
                    Case 3: .Entirerow.Interior.ColorIndex = 5    'blue
                    Case 4: .Entirerow.Interior.ColorIndex = 10   'green
                End Select
            End With
        End If
    
    ws_exit:
        Application.EnableEvents = True
    End Sub
    This is worksheet event code, which means that it needs to be
    placed in the appropriate worksheet code module, not a standard
    code module. To do this, right-click on the sheet tab, select
    the View Code option from the menu, and paste the code in.

  3. #3
    Registered User
    Join Date
    11-03-2008
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    2,521

    Bob Can u please attach a Worksheet?

    Bob Can u please attach a Worksheet?

    Im not versed with VBA at all and am not able to understand Head or Tail...as to what the code is going to do?

    Excel 2007 has unlimited conditions in CF. Thanks for this info however I have 2003 anyways...

    What I want is to Fill colour in Column b starting from Cell B2 onwards till lets say B15 which has all different activities in each cell..

    Every Activity would have a Different COLOUR ..
    So the entire Row owuld need to get coloured with the same Colour selected in cell B2,B3 AUTOMATICALLY wherever it matches its condition...

    Please attach A Sheet with the same code added as I was not able to follow anything...

    Im attaching the File for your reference...
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    11-03-2008
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    2,521
    Bob I have attached my actual Worksheet?
    The earlier one was for your reference...in which I had added the VBA code..

    Dear Forum,
    Every Activity would have a Different COLOUR ..
    What I want is whichever Colour I select in the Column B under Project Activity for different acitivities should get copied to the entire Row till the Column V
    i.e. Last Date Entry for the Project Book (2-Apr-09)
    As you can see the Yellow strip is appearing in only those cells which are falling in the Range.
    I need help on Conditional Formatting code for filling the respective cells falling in the Start Date and End Date.
    The Matching cells should have the same colour as the one for the same Activity in the Column B...

    Have explained everthing in the Call-outs...in intricate details...
    Attached Files Attached Files

  5. #5
    Forum Expert Bob Phillips's Avatar
    Join Date
    09-03-2005
    Location
    Wessex
    MS-Off Ver
    Office 2003, 2010, 2013, 2016, 365
    Posts
    3,284
    You have effectively posted a blank worksheet.

    So you don't want conditional formatting at all, just a bunch of differently coloured rows?

  6. #6
    Registered User
    Join Date
    11-03-2008
    Location
    India
    MS-Off Ver
    Excel 2010
    Posts
    2,521
    Quote Originally Posted by Bob Phillips View Post
    You have effectively posted a blank worksheet.

    So you don't want conditional formatting at all, just a bunch of differently coloured rows?
    Bob,
    I attached two files :
    1. First file BOb.xls where I had put your code but could not understand anything because of not knowing VBA.

    2.My actual File where I have explained in details my requirement..

    I think I am making a mistake in displayimh the Colours in each Row , can someone help me with the Code for the same and also correct me Im getting very confused now...

    Trying all osrts of AND & OR , Combination CONDITIONS to no avail.
    Last edited by e4excel; 12-09-2008 at 02:08 PM.

+ 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