N
Nick
The query shows multiple records when AlID0001.label_id and ALID0001.date and
ALID0001.time have a ALID0001.scans, of "7" later than 12:00:00. the record
multiplies each trans action of ALID0001.scans by 2. I have tried Join
changes but this does not correct the problem. Please take a look and let me
know where the error is. Thank you!
ExpressPast 12
SELECT ALID0001.label_id, ScannAction.Scanname, ALID0001.date,
ALID0001.time, ALID0001.Delete, ALID0001.Manual, ALID0001.scans,
ALID0001.zipcode, ALID0001.route_id, ALID0001.Employee_id, [Last Name] & ", "
& [First Name] AS Expr1, AccountAction.AccountAction
FROM AccountAction INNER JOIN (ScannAction INNER JOIN (Employees RIGHT JOIN
ALID0001 ON Employees.ScannerId = ALID0001.Employee_id) ON
ScannAction.ScanActionId = ALID0001.scans) ON AccountAction.AccoutnNo =
ALID0001.Manual
WHERE (((ALID0001.label_id) Like "e*") AND ((ALID0001.date)=[What Date]) AND
((ALID0001.time)>"12:00:00"));
ExpHistory
SELECT expresPast12query.label_id, ALID0001.time, ALID0001.Employee_id,
ALID0001.date, ALID0001.Delete, ScannAction.Scanname, ALID0001.scans,
ALID0001.Scanner_id, [Last Name] & ", " & [First Name] AS Expr2
FROM ScannAction INNER JOIN (Employees RIGHT JOIN (expresPast12query RIGHT
JOIN ALID0001 ON expresPast12query.label_id = ALID0001.label_id) ON
Employees.ScannerId = ALID0001.Employee_id) ON ScannAction.ScanActionId =
ALID0001.scans
WHERE (((expresPast12query.label_id) Like "e*"))
ORDER BY expresPast12query.label_id;
ALID0001.time have a ALID0001.scans, of "7" later than 12:00:00. the record
multiplies each trans action of ALID0001.scans by 2. I have tried Join
changes but this does not correct the problem. Please take a look and let me
know where the error is. Thank you!
ExpressPast 12
SELECT ALID0001.label_id, ScannAction.Scanname, ALID0001.date,
ALID0001.time, ALID0001.Delete, ALID0001.Manual, ALID0001.scans,
ALID0001.zipcode, ALID0001.route_id, ALID0001.Employee_id, [Last Name] & ", "
& [First Name] AS Expr1, AccountAction.AccountAction
FROM AccountAction INNER JOIN (ScannAction INNER JOIN (Employees RIGHT JOIN
ALID0001 ON Employees.ScannerId = ALID0001.Employee_id) ON
ScannAction.ScanActionId = ALID0001.scans) ON AccountAction.AccoutnNo =
ALID0001.Manual
WHERE (((ALID0001.label_id) Like "e*") AND ((ALID0001.date)=[What Date]) AND
((ALID0001.time)>"12:00:00"));
ExpHistory
SELECT expresPast12query.label_id, ALID0001.time, ALID0001.Employee_id,
ALID0001.date, ALID0001.Delete, ScannAction.Scanname, ALID0001.scans,
ALID0001.Scanner_id, [Last Name] & ", " & [First Name] AS Expr2
FROM ScannAction INNER JOIN (Employees RIGHT JOIN (expresPast12query RIGHT
JOIN ALID0001 ON expresPast12query.label_id = ALID0001.label_id) ON
Employees.ScannerId = ALID0001.Employee_id) ON ScannAction.ScanActionId =
ALID0001.scans
WHERE (((expresPast12query.label_id) Like "e*"))
ORDER BY expresPast12query.label_id;