I want to run a query between two tables to see if there is a matching record or not. If there is no record, I have a Yes/No field in the table called "notInSystem" that I want to be clicked YES then. How would I go about this?
ex:
student table:
ID NAME notInSystem
1 Tom []
2 Jim []
3 Bill []
current roster table:
old table:
ID NAME
1 Tom
2 Jim
4 Mike
After query:
student table:
ID NAME notInSystem
1 Tom []
2 Jim []
3 Bill [X]
4 Mike []
I have the append query working, i just need help doing that task of checking off the people that don't exist anymore.
ex:
student table:
ID NAME notInSystem
1 Tom []
2 Jim []
3 Bill []
current roster table:
old table:
ID NAME
1 Tom
2 Jim
4 Mike
After query:
student table:
ID NAME notInSystem
1 Tom []
2 Jim []
3 Bill [X]
4 Mike []
I have the append query working, i just need help doing that task of checking off the people that don't exist anymore.