I would like to add a record to my table, tblReviews. I select a value from the combobox to fill in the name, location, and date for a person. Before I fill in those text boxes, I would like to make sure a duplicate entry does not exist for this person. On the BeforeUpdate property of the combobox I call a macro: mcrDupEntry. I have the following DLookup statement in my macro. If it is true, a message box will appear warning that there is a duplicate record.
DLookUp("[CNO]","tblReviews","[CNO]='" & [Forms]![frmReviews]![cboCNO].[column](0) & "'")
I would like to either cancel the event or go to the pre-existing record. When I choose a value from my combobox, the message box will appear if I have a duplicate value, but the values are still placed in the text boxes. The message box also keeps appearing no matter what button I click on to clear my form. I also get a validation error message that tells me a field or record is invalid. I'm not sure what I'm doing wrong. Is it the DLookup statement or my macro that are mis-behaving?
DLookUp("[CNO]","tblReviews","[CNO]='" & [Forms]![frmReviews]![cboCNO].[column](0) & "'")
I would like to either cancel the event or go to the pre-existing record. When I choose a value from my combobox, the message box will appear if I have a duplicate value, but the values are still placed in the text boxes. The message box also keeps appearing no matter what button I click on to clear my form. I also get a validation error message that tells me a field or record is invalid. I'm not sure what I'm doing wrong. Is it the DLookup statement or my macro that are mis-behaving?