A
Al Camp
Two fields, ConferenceID(key field) and EventNo. ConferenceID and EventNo
each can contain Dupes, but not the combination of the two.
Good data...
ConfID EventNo
14 A-1
14 B-1
15 A-1
Bad data...
14 A-2
14 A-2 'dupe within 14
15 B-5
MacDermott clued me in to View/Indexing in table design view (thanks
MacDermott!), so I set it up this way
NoDupesInEventNo ConferenceID Asc
EventNo Asc
Question... I want the dupe checking to occur right after the EventNo is
entered... not when the record is Updated normally. I tried Refresh and
Requery on the AfterUpdate event of eventNo, but the dupe error still
doesn't "fire".
It does work fine upon leaving/updating the record.
Couldn't figure out what to search for in Google groups...
Thanks in advance
Al Camp
each can contain Dupes, but not the combination of the two.
Good data...
ConfID EventNo
14 A-1
14 B-1
15 A-1
Bad data...
14 A-2
14 A-2 'dupe within 14
15 B-5
MacDermott clued me in to View/Indexing in table design view (thanks
MacDermott!), so I set it up this way
NoDupesInEventNo ConferenceID Asc
EventNo Asc
Question... I want the dupe checking to occur right after the EventNo is
entered... not when the record is Updated normally. I tried Refresh and
Requery on the AfterUpdate event of eventNo, but the dupe error still
doesn't "fire".
It does work fine upon leaving/updating the record.
Couldn't figure out what to search for in Google groups...
Thanks in advance
Al Camp