Here is my query, but it still returns multiple instances of the same date...
Does anyone know what I can do to fix this, or what is wrong?
Thanks.
Code:
SELECT DISTINCT PurchaseOrderTBL.PODate
FROM PurchaseOrderTBL
WHERE (PurchaseOrderTBL.PODate Is Not Null)
GROUP BY PurchaseOrderTBL.PODate
ORDER BY PurchaseOrderTBL.PODate DESC;
Does anyone know what I can do to fix this, or what is wrong?
Thanks.