C
|
clig 11/18/2009 |
I have a table that has 10 fields. We are trying to prevent dublicates, but each of the fields can be duplicated at one time or another. Is there a way that we can select say 5 fields and have it check to see if the information exists, if they do then prompt the user to confirm information is correct before adding. Thx
|
J
|
Jane 11/19/2009 |
Paul, |
P
|
PaulMAO author 11/23/2009 |
Paul, use Before record added event and Check is specific record exists action on the Events tab for this purpose.
|
![]() |
Sergey Kornilov admin 11/23/2009 |
Exactly the same way. Select * from table where field1='value1' and field2='value2' and field3='value3' and field3='value3' |