I am having issues with a union query of mine. I have a table that tracks certain tests. I have created two different queries (ie: one is all the tests that need a draft test sent, one is all the tests that need a final test sent), basically each query has the same exact fields.
I am trying to union these two queries together and just list the next due date (either draft or final). My query is as follows:
SELECT *, Draft as [Next Due Date] FROM qryTest_Draft
UNION
SELECT *, Final as [Next Due Date] FROM qryTest_Final
I am getting the "Data type mismatch in criteria expression" error message. I can run both queries separately and they come up just fine. Can someone help me out? Thanks!
I am trying to union these two queries together and just list the next due date (either draft or final). My query is as follows:
SELECT *, Draft as [Next Due Date] FROM qryTest_Draft
UNION
SELECT *, Final as [Next Due Date] FROM qryTest_Final
I am getting the "Data type mismatch in criteria expression" error message. I can run both queries separately and they come up just fine. Can someone help me out? Thanks!