Thread
:
Worksheet_change event
View Single Post
#
8
Posted to microsoft.public.excel.programming
Gary''s Student
external usenet poster
Posts: 11,058
Worksheet_change event
Try:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row = 7 Then
Application.EnableEvents = False
Target.Offset(1).Value = "x"
Application.EnableEvents = True
End If
End Sub
--
Gary''s Student - gsnu2007k
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student