Hi,
I have Staff Detail and Leave Detail. One staff has many leave details. I want to check if the staff has duplicate leave details. I have StaffNo and StaffName in [Staff Detail] and StaffNo,StartDate,EndDate and LeaveCode in [Leave Detail]. Both linked by StaffNo.
This is the code,
But there was an error,
Data type mismatch in criteria expression.
The error is here,
Any idea? thanx in advance..
I have Staff Detail and Leave Detail. One staff has many leave details. I want to check if the staff has duplicate leave details. I have StaffNo and StaffName in [Staff Detail] and StaffNo,StartDate,EndDate and LeaveCode in [Leave Detail]. Both linked by StaffNo.
This is the code,
Code:
Private Sub STARTDATE_BeforeUpdate(Cancel As Integer)
Dim stLinkCriteria As String
Dim rsc As DAO.Recordset
Set rsc = Me.RecordsetClone
stLinkCriteria = "[STARTDATE]=" & "'" & Me.STARTDATE.Value & "'"
If DCount("STARTDATE", "LEAVE DETAIL", stLinkCriteria) > 0 Then Me.Undo
MsgBox "Warning", vbInformation, "Duplicate Information"
rsc.FindFirst stLinkCriteria
Me.Bookmark = rsc.Bookmark
End If
Set rsc = Nothing
End Sub
But there was an error,
Data type mismatch in criteria expression.
The error is here,
Code:
If DCount("STARTDATE", "LEAVE DETAIL", stLinkCriteria) > 0 Then
Any idea? thanx in advance..
