Hi Audrey
this will add in a comment if "village at williams creek" is typed into a
cell in column B
----
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If Target.Column = 2 Then 'column B (change as necessary)
If Trim(Target.Value) = "village at williams creek" Then
Target.AddComment "no kickers"
ElseIf Trim(Target.Value) = "yes" Then
Target.AddComment "no"
End If
End If
Application.EnableEvents = True
End Sub
---
to use the code, right mouse click on the sheet you want the code to run on
and choose view code
copy & paste the code into the right hand side of the screen. If any lines
turn red, click at the end of the line and press the delete key, this should
fix up any line wrap problems.
now use ALT & F11 to switch back to your workbook ... type "yes" into a cell
in column B and the comment "no" should be added to the cell ... if you type
"village at williams creek" you should get "no kickers"
Hope this helps
Cheers
JulieD