This CAN'T be that tough!!!!
I have a query that looks at a table and tells me which records have data in any of 8 fields (SQL code below):
SELECT Requirements.RQ_User1, Requirements.RQ_User2, Requirements.RQ_User3, Requirements.RQ_User4, Requirements.RQ_User5, Requirements.RQ_User6, Requirements.RQ_User7, Requirements.RQ_User8
FROM Requirements
WHERE (((Requirements.RQ_User1) Is Not Null)) OR (((Requirements.RQ_User2) Is Not Null)) OR (((Requirements.RQ_User3) Is Not Null)) OR (((Requirements.RQ_User4) Is Not Null)) OR (((Requirements.RQ_User5) Is Not Null)) OR (((Requirements.RQ_User6) Is Not Null)) OR (((Requirements.RQ_User7) Is Not Null)) OR (((Requirements.RQ_User8) Is Not Null));
What I need to do now is compare this conglomeration of data against a table with a single column in it: Data Points. I have searched every place I could think of, but haven't found ANY way to simply get all the data from the query, put it in a single column, compare it to the Data Points table, then show me where the differences are.
I would think this would be a piece of cake!!! Sorry for the frustration, but I obviously don't know enough to get over this (seemingly) minor hurdle.
Any help?
I have a query that looks at a table and tells me which records have data in any of 8 fields (SQL code below):
SELECT Requirements.RQ_User1, Requirements.RQ_User2, Requirements.RQ_User3, Requirements.RQ_User4, Requirements.RQ_User5, Requirements.RQ_User6, Requirements.RQ_User7, Requirements.RQ_User8
FROM Requirements
WHERE (((Requirements.RQ_User1) Is Not Null)) OR (((Requirements.RQ_User2) Is Not Null)) OR (((Requirements.RQ_User3) Is Not Null)) OR (((Requirements.RQ_User4) Is Not Null)) OR (((Requirements.RQ_User5) Is Not Null)) OR (((Requirements.RQ_User6) Is Not Null)) OR (((Requirements.RQ_User7) Is Not Null)) OR (((Requirements.RQ_User8) Is Not Null));
What I need to do now is compare this conglomeration of data against a table with a single column in it: Data Points. I have searched every place I could think of, but haven't found ANY way to simply get all the data from the query, put it in a single column, compare it to the Data Points table, then show me where the differences are.
I would think this would be a piece of cake!!! Sorry for the frustration, but I obviously don't know enough to get over this (seemingly) minor hurdle.
Any help?