Hello,
I am trying to build a query to pull a total of completed "truck roll saved" coming from 2 different tables on a daily basis. However, I keep getting the incorrect data. I am not a pro with SQL. The common fields in the tables are the User, Date, and a check box for Saved Truck Roll. I want to count the amount of truck rolls that were saved in the 2 tables then multiply it by $49.95. I make both queries work fine separately, but when I try to combine them, they don't work. I tried to match the date, user, and saved truck roll field in both queries and it didn't work. All I am trying to do is to get both table totals combined in one report. I can't get it to work. Can anyone help me out?
This is what I have so far:
SELECT [QRY SAVED TRUCK ROLL MISM].[Date Completed], [QRY SAVED TRUCK ROLL MISM].Lead, [QRY SAVED TRUCK ROLL MISM].[CountOfSaved Truck Roll], [QRY SAVED TRUCK ROLL DUP OUT].[CountOfSaved Truck Roll]
FROM [QRY SAVED TRUCK ROLL MISM], [QRY SAVED TRUCK ROLL DUP OUT]
WHERE ((([QRY SAVED TRUCK ROLL MISM].[Date Completed]) Between [ENTER START DATE] And [ENTER END DATE]))
ORDER BY [QRY SAVED TRUCK ROLL MISM].[Date Completed];
I am trying to build a query to pull a total of completed "truck roll saved" coming from 2 different tables on a daily basis. However, I keep getting the incorrect data. I am not a pro with SQL. The common fields in the tables are the User, Date, and a check box for Saved Truck Roll. I want to count the amount of truck rolls that were saved in the 2 tables then multiply it by $49.95. I make both queries work fine separately, but when I try to combine them, they don't work. I tried to match the date, user, and saved truck roll field in both queries and it didn't work. All I am trying to do is to get both table totals combined in one report. I can't get it to work. Can anyone help me out?
This is what I have so far:
SELECT [QRY SAVED TRUCK ROLL MISM].[Date Completed], [QRY SAVED TRUCK ROLL MISM].Lead, [QRY SAVED TRUCK ROLL MISM].[CountOfSaved Truck Roll], [QRY SAVED TRUCK ROLL DUP OUT].[CountOfSaved Truck Roll]
FROM [QRY SAVED TRUCK ROLL MISM], [QRY SAVED TRUCK ROLL DUP OUT]
WHERE ((([QRY SAVED TRUCK ROLL MISM].[Date Completed]) Between [ENTER START DATE] And [ENTER END DATE]))
ORDER BY [QRY SAVED TRUCK ROLL MISM].[Date Completed];