Hi.
I need to avoid duplicate data entry in the range of column "E".
by entering a value repeated the same should be automatically deleted.
![]()
Sub Worksheet_Change(ByVal Target As Range) Dim r1 As Range Set r1 = Range("E2:E100") If r1 = 0 Then Else If r1 > 0 Then MsgBox "The new entry is repeated according to the lines: " & r1 End If End Sub
Bookmarks