I have two tables:
ITS_Operations_SVP
ITS_VP_List
The records within ITS_VP_List are also within ITS_Operations_SVP. I'm trying to write a query that displays the records within ITS_Operations_SVP that are not within ITS_VP_List.
Here's what I have
SELECT DISTINCT ITS_Operations_SVP.[VP Name]
FROM ITS_Operations_SVP LEFT JOIN ITS_VP_List ON ITS_Operations_SVP.[VP Name] = ITS_VP_List.[VP Name]
WHERE (((ITS_Operations_SVP.[VP Name])<>[ITS_VP_List]![VP Name]))
ORDER BY ITS_Operations_SVP.[VP Name];
This produces no records. What am I doing wrong?