Hi, I have two different change events I'd like to run on the same sheet. I'm having trouble having the second one run. Here's the first change:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("C3")) Is Nothing Then Exit Sub
Application.CutCopyMode = False...