D
dlbuck
First of all I want to thank all of those out there who post and reply, it
has been a great help. I am looking at trailers that come in our yard and
then unloaded. I am pulling the Date In data from one database and the Unload
date from another. The only common denominator is the trailer number (Equip
Id). While we often have the same trailer numbers in and out, every date is
duplicated for each field. Is there a way to allow duplicate trailer
numbers, but not duplicate dates for those trailers?
My current SQL look like this.
SELECT [72 hour qry rpt 4].[Equip Id], [72 hour qry rpt 4].[Date Unloaded],
[72 hour qry rpt 4].[Actual Date in], [72 hour qry rpt 4].[Days Diff]
FROM [72 hour qry rpt 4]
GROUP BY [72 hour qry rpt 4].[Equip Id], [72 hour qry rpt 4].[Date
Unloaded], [72 hour qry rpt 4].[Actual Date in], [72 hour qry rpt 4].[Days
Diff]
ORDER BY [72 hour qry rpt 4].[Equip Id], [72 hour qry rpt 4].[Date
Unloaded], [72 hour qry rpt 4].[Actual Date in];
Thanks again
has been a great help. I am looking at trailers that come in our yard and
then unloaded. I am pulling the Date In data from one database and the Unload
date from another. The only common denominator is the trailer number (Equip
Id). While we often have the same trailer numbers in and out, every date is
duplicated for each field. Is there a way to allow duplicate trailer
numbers, but not duplicate dates for those trailers?
My current SQL look like this.
SELECT [72 hour qry rpt 4].[Equip Id], [72 hour qry rpt 4].[Date Unloaded],
[72 hour qry rpt 4].[Actual Date in], [72 hour qry rpt 4].[Days Diff]
FROM [72 hour qry rpt 4]
GROUP BY [72 hour qry rpt 4].[Equip Id], [72 hour qry rpt 4].[Date
Unloaded], [72 hour qry rpt 4].[Actual Date in], [72 hour qry rpt 4].[Days
Diff]
ORDER BY [72 hour qry rpt 4].[Equip Id], [72 hour qry rpt 4].[Date
Unloaded], [72 hour qry rpt 4].[Actual Date in];
Thanks again