Results 1 to 5 of 5

Thread: [RESOLVED] Changes in Whole Sheet....

Threaded View

  1. #1

    Thread Starter
    Fanatic Member spud's Avatar
    Join Date
    Aug 2000
    Location
    Munster (Germany)
    Posts
    542

    Resolved [RESOLVED] Changes in Whole Sheet....

    To change a cell to red when certain text is inserted I have used this:

    Private Sub Worksheet_Change(ByVal Target As Range)

    If Range("A1").Text = "RTU" Then
    Range("A1").Interior.Color = RGB(255, 0, 0)
    End If

    End Sub

    what I would like to do is If any Cell in the worksheet has this value it changes to Red?

    thx
    Last edited by spud; Jun 7th, 2006 at 08:30 AM.
    Haven't got anything to say that is the least bit interesting.
    www.tartan-underground.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width