Hello I have the following query:
SELECT ShipDeliveryDates.Project_Number, Min(ShipDeliveryDates.Sched_Delivery_Date) AS Sched_Next_Delivery_Date, ShipDeliveryDates.Act_Delivery_Date
FROM ShipDeliveryDates
GROUP BY ShipDeliveryDates.Project_Number, ShipDeliveryDates.Act_Delivery_Date;
Using this query I would like to pick out all the projects with their upcoming delivery dates. The query is not working properly, all the delivery dates show up for each project.
The query works properly if I delete the selection of Act_Delivery_Date, but I need it there.
Any help would be welcomed.