+ Reply to Thread
Results 1 to 11 of 11

extend conditional format

Hybrid View

  1. #1
    Registered User
    Join Date
    10-19-2005
    Posts
    48

    extend conditional format

    Hi There,
    I have seen some posts on sophisticated extension of conditional formatting but those only took care of colors. what I would like to have is:

    if cond1
    -specify color
    -specify bold or not
    -specify italic or not
    -specify cell color
    -specify cell (not content) underline

    if cond2, etc..

    anyone?

    thanks a lot,
    jm

  2. #2
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Something like

    Uses the select case. If you enter one of the two conditions in Col A it changes cell font and interior colours etc

    Code goes in the worksheet

    http://www.contextures.com/xlvba01.html#Worksheet

    http://www.ozgrid.com/VBA/select-case.htm

    Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("A:A")) Is Nothing Then
    Select Case Target.Value
        Case 100
    Target.Interior.ColorIndex = 5
    With Target.Font
        .Bold = True
        .Italic = True
        .Color = 17
        .Underline = True
    End With
       Case 200
    Target.Interior.ColorIndex = 15
    With Target.Font
        .Bold = False
        .Italic = False
        .Color = 27
        .Underline = False
    End With
    End Select
    End If
    End Sub
    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  3. #3
    Registered User
    Join Date
    10-19-2005
    Posts
    48
    Thank you VBA Noob,

    sorry for those neewbie VBA add'l questions::

    - how is th sub called? do I need to run a macro? can this be applied automatically?
    - How if I want to do the CASE on column A, and apply changes on columns B to D?
    - what is the code to underline the cell border (vs. content)?

    thx again,
    jm

  4. #4
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    - how is th sub called? do I need to run a macro? can this be applied automatically?
    Read link. Explained there

    - How if I want to do the CASE on column A, and apply changes on columns B to D?

    Change "A:A" to "A:C" to work with Column A to C
    If Not Intersect(Target, Range("A:A")) Is Nothing Then
    - what is the code to underline the cell border (vs. content)?
    With Target.Borders(xlEdgeBottom)
            .LineStyle = xlContinuous
            .Weight = xlThin
            .ColorIndex = xlAutomatic
        End With

    VBA Noob

  5. #5
    Registered User
    Join Date
    10-19-2005
    Posts
    48

    Red face

    cool, getting there. Works great on the cell I ENTER a value on.

    I would need however :

    1: depending on what cell in Col A is, will change format in Cols B-D

    2: should do this based on e.g. A1 which is a formula, i.e. I am not actually changing or entering anyting on A1. But depending on many other cells, A1 will have a value which I use to format B1 C1 and D1.

    thx,
    jm

    PS: what is the code to remove the border?

  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    Remove borders
    Target.Borders.LineStyle = xlNone
    Use offset to change Col B formatting

    e.g
    Target.Offset(0, 1)
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("A:A")) Is Nothing Then
    Select Case Target.Value
        Case 100
    Target.Offset(0, 1).Interior.ColorIndex = 5
    With Target.Offset(0, 1).Font
        .Bold = True
        .Italic = True
        .Color = 17
        .Underline = True
    End With
       Case 200
    Target.Offset(0, 1).Interior.ColorIndex = 15
    With Target.Offset(0, 1).Font
        .Bold = False
        .Italic = False
        .Color = 27
        .Underline = False
    With Target.Offset(0, 1).Borders(xlEdgeBottom)
            .LineStyle = xlContinuous
            .Weight = xlThin
            .ColorIndex = xlAutomatic
        End With
    End With
    End Select
    End If
    End Sub
    VBA Noob
    Last edited by VBA Noob; 06-16-2007 at 01:54 PM.

  7. #7
    Registered User
    Join Date
    10-19-2005
    Posts
    48
    Noob,

    - Offset(0,n) takes care of one offset cell. how about doing it on several columns? (will change C AND D)?

    - There is still a major difference with the regular "conditional formatting". The sheet I work on is purely a sheet of formulas based on other sheets. I am not typing anything into this sheet, but I need it to reformat itself. The code seems not to be able to do so. Maybe _change is not the right trigger? _Calculate maybe?

    thx,
    jm

+ 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