I have two tables,
Entry
Exit
Both tables record data on a user when they first come in and when they leave. So same fields, just different data in both tables (minus the UniqueID).
UniqueID (PK) is set up as Text with an Input Mask of AB0000000 (AB is always AB but the 0000000 changes depending on user, example: AB0132344). Also Indexed (No Duplicates)
Issue:
I have a query that has a relationship between the two UniqueIDs, it works for every ID but this one AB01034219. I realized somehow the Exit table shows the ID was AB34219 (missing 010) not sure if someone went in there in changed it or how that happened.
I manually changed it back to: AB01034219 in the Exit table, the problem is, the Query won't pick up on it. The UniqueID matches in both tables but the query just doesn't want to return it.
Is it because I manually changed it? Is it the Input mask on the UniqueID or the fact it's been manually changed?
Thanks,
Robb