G
Guest
The following qry is an unbound list box...
What would I do to only have a requireddate show in the column if it is a
date greater than today. I don't want it to filter all of what is being shown
in all columns in the list. I just don't want past dates to be visible in the
list.
SELECT Orders.OrderID, Orders.OrderDate, Orders.PurchaseOrderNumber,
qrySupplierIDLookup.SupplierName, Orders.RequiredDate
FROM Orders LEFT JOIN qrySupplierIDLookup ON Orders.SupplierID =
qrySupplierIDLookup.SupplierID
WHERE (((Orders.Inactive)=False))
ORDER BY Orders.PurchaseOrderNumber;
I don't know if this is even possible. Maybe I need to add another unbound
list box that only lists this criteria
What would I do to only have a requireddate show in the column if it is a
date greater than today. I don't want it to filter all of what is being shown
in all columns in the list. I just don't want past dates to be visible in the
list.
SELECT Orders.OrderID, Orders.OrderDate, Orders.PurchaseOrderNumber,
qrySupplierIDLookup.SupplierName, Orders.RequiredDate
FROM Orders LEFT JOIN qrySupplierIDLookup ON Orders.SupplierID =
qrySupplierIDLookup.SupplierID
WHERE (((Orders.Inactive)=False))
ORDER BY Orders.PurchaseOrderNumber;
I don't know if this is even possible. Maybe I need to add another unbound
list box that only lists this criteria