Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A:A")) Is Nothing Then
If InStr(1, Target.Value, "(CTB)", vbTextCompare) > 0 Then
MsgBox "1: Check Access List " & vbLf & _
"2: Sign out in binder"
ElseIf InStr(1, Target.Value, "?cable", vbTextCompare) > 0 Then
MsgBox "1: What are your intentions with the server cabinet? " & vbLf & _
"2: Are you going to work with cabling?" & vbLf & _
"3: If YES, have you contacted the Infrastructure Support Team?"
End If
ElseIf Not Intersect(Target, Range("J:J")) Is Nothing Then
If InStr(1, Target.Value, "MID4", vbTextCompare) > 0 Then
MsgBox "1: Check Access List in the Binder " & vbLf & _
"2: Log access in the CTB Portion of the key-sign out binder"
ElseIf InStr(1, Target.Value, "MID6", vbTextCompare) > 0 Then
MsgBox "1: Check Access List in the Binder " & vbLf & _
"2: Log access in the CTB Portion of the key-sign out binder"
ElseIf InStr(1, Target.Value, "MID7", vbTextCompare) > 0 Then
MsgBox "1: Check Access List in the Binder " & vbLf & _
"2: Log access in the CTB Portion of the key-sign out binder"
ElseIf InStr(1, Target.Value, "MID8", vbTextCompare) > 0 Then
MsgBox "1: Check Access List in the Binder " & vbLf & _
"2: Log access in the CTB Portion of the key-sign out binder"
End If
End If
End Sub