Hello,
I am having trouble figuring out how to build a query for what I need. I have a single table with the following fields
ID (auto number)
Item_Type
Serial_Number
Location
With data entries like the following
Item_Type Serial_Number Location
Chair 12345 Storage
Chair 6789 xfer out
Chair 6789 xfer in
Chair 12345 xfer out
Chair 22222 storage
What I need to do is build a query that will identify the duplicates by serial number but only return the records where one of the duplicate serial numbers has a location of storage. So out of the above example it should return
Item_Type Serial_Number Location
Chair 12345 Storage
Chair 12345 xfer out
Any help would be greatly appreciated.