Hello,
Here’s snippet of a Private Sub Worksheet_Change(ByVal Target as range)
The problem I’m having is its removing header information in range D1, D2 & D3. Is there a way to have the code change rows 4:27 only?
Any help is appreciated
Here’s snippet of a Private Sub Worksheet_Change(ByVal Target as range)
Code:
If Not Intersect(Target, Range("B4:B27")) Is Nothing And Cells(Target.Row, "B") <> "Surveys" Or Cells(Target.Row, "B") <> "Reviews" And Cells(Target.Row, "D").Value > 0 Then
Cells(Target.Row, "D").Value = ""
End If
The problem I’m having is its removing header information in range D1, D2 & D3. Is there a way to have the code change rows 4:27 only?
Any help is appreciated