Hello,
I have the following code attached to the subform in my main form and it works fine.
My problem is that diffent cities in my main form may have the same street name, therefore the address of a problem may be duplicated between cities. I have seen the vlookup using multiple criterias but I haven't seen any using multiple criterias in two different froms (main form and subfom).
Does anyone know how I would change my code to check the community name in my main form and the location in my subform?
FYI...they are two diffent tables also.
Thanks in advance for you help
I have the following code attached to the subform in my main form and it works fine.
Code:
Private Sub Location_BeforeUpdate(Cancel As Integer)
Dim varLocation As Variant
If Me.NewRecord Then
varLocation = DLookup("[Location]", "LEAK FOUND TABLE - 2", "[Location] = '" & Me.Location & "'")
If Not IsNull(varLocation) Then
If MsgBox("This record already exists." & _
" Do you want to cancel these changes and go to that record instead?", _
vbQuestion + vbYesNo, _
"DUPLICATE ADDRESS FOUND") _
= vbYes _
Then
Cancel = True
Me.Undo
Me.Recordset.FindFirst "[Location] = '" & varLocation & "'"
bolCheckDuplicate = True
End If
End If
End If
Exit_Location_BeforeUpdate:
Exit Sub
Err_Location_BeforeUpdate:
MsgBox Err.Description
Resume Exit_Location_BeforeUpdate
End Sub
My problem is that diffent cities in my main form may have the same street name, therefore the address of a problem may be duplicated between cities. I have seen the vlookup using multiple criterias but I haven't seen any using multiple criterias in two different froms (main form and subfom).
Does anyone know how I would change my code to check the community name in my main form and the location in my subform?
FYI...they are two diffent tables also.
Thanks in advance for you help