Hello,
I have DB where I track my company's equipment. In the DB, I have a table that tracks the equipment's movements. Each time a piece of equipment moves from one project to another an entry is made where the following fields are populated:
-Move_ID (Primary Key - Autonumber)
-Equipment_Number
-Pickup_Date
-Pickup_Location
-Delivery_Date
-Delivered_Location
I'm trying to create a query that will display the beginning and end dates that a piece of equipment was on a project.
Project = Delivered_Location
Beginning Date = Delivered_Date
End Date = Pickup_Date (from the next record where the equipment number is the same and the Pickup_Date is greater than and closest to the Delivered_Date)
I'm relatively new to access and my SQL skills rate at about a .001 out of 10 so I'm using the query design functionality.
Any help is greatly appreciated.