+ Reply to Thread
Results 1 to 3 of 3

Macro for: If cell has 4 characters, make cell red

Hybrid View

  1. #1
    Registered User
    Join Date
    03-14-2006
    Posts
    23

    Macro for: If cell has 4 characters, make cell red

    I'd like a macro to identify cells with only 4 characters (i.e. a year like 1989) and if the cell has only 4 characters, to make the characters in the cell to the right of it bold red. For example, if cell A29 is 1933, the characters in cell B29 should be in bold red.

    Thanks for your help.

  2. #2
    Carim
    Guest

    Re: Macro for: If cell has 4 characters, make cell red

    Hi Sandeman,

    Give a try to following :
    Private Sub Worksheet_Change(ByVal Target As Range)

    Dim Cell As Range
    Set Target = Range("A1:A50")
    If Target Is Nothing Then
    Exit Sub
    Else
    For Each Cell In Target
    If Len(Cell.Value) = 4 Then
    Cell.Offset(0, 1).Range("A1").Interior.ColorIndex = 3
    End If
    If Len(Cell.Value) <> 4 Then
    Cell.Offset(0, 1).Range("A1").Interior.ColorIndex = xlNone
    End If
    Next Cell
    End If
    End Sub


    HTH
    Carim


  3. #3
    Registered User
    Join Date
    03-14-2006
    Posts
    23
    Wonderful. Thank you Carim!

+ 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