Here is a macro the will check the entry made in REPORT NUMBER column. It checks if the TRN-TR number has been used before and if so, it checks if it is for the same company. If not, it prompts the error on a message box then erases the TRN_TR number from the active cell. I also programmed message box if it is OK to use the TRN-TR number for both reasons:
1. it is not in use
2. it is used for the same comany
If you think this is too much annoyance for the operator, you can delete this part of the code.
Here is the macro code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim Wks As Worksheet
Dim Cie_New As String, Cie_Old As String
Dim FindTRN As Range
'
Application.EnableEvents = False
'
If Target.Column = 15 Then 'proceed witht the following part of the code ONLY if target cell is in REPORT NUMBER column.
'
Set Wks = Worksheets("Works Orders Results")
Set FindTRN = Wks.Columns(15).Cells.Find(Target, , xlValues, xlWhole, xlByColumns, xlNext, False)
If Not FindTRN Is Nothing Then
Cie_New = Target.Offset(0, -10).Value
Cie_Old = Cells(FindTRN.Row, 5).Value
If Cie_New <> Cie_Old Then
MsgBox "This report number is actually used by customer " & Chr(13) & Cie_Old & Chr(13) _
& "Please use another report number", vbOKOnly, "REPORT NUMBER IN USAGE"
Target = "" ' THIS ERASES THE TRN NUMBER IN ACTIVE CELL.
Else
MsgBox "OK to use this report number for this customer", vbOKOnly, "REPORT NUMBER OK"
End If
Else
MsgBox "This Report Number has never been used", vbOKOnly, "REPORT NUMBER USAGE"
End If
End If
Application.EnableEvents = True
End Sub
Hope this help you.
Bookmarks