D
Deborah Najm
Hi,
I have a query that has a parameter value for the user to enter a date,
however the query never returns any records, because the field contains both
the date and the time stamp -- I am not sure how to format the input or the
compare, to get this right.
Thank you,
Deb
Query:
SELECT PO_Items.PO_Num, Phone.Date_In
FROM (Phone INNER JOIN Phone_Models ON
Phone.Phone_Model_ID=Phone_Models.Phone_Model_ID) INNER JOIN PO_Items ON
(Phone.PO_Item_Id=PO_Items.PO_Item_ID) AND
(Phone_Models.Phone_Model_ID=PO_Items.[Phone Model])
WHERE (((PO_Items.PO_Num)=[Enter the PO Number]) AND ((Phone.Date_In)=[Enter
the Date]));
I have a query that has a parameter value for the user to enter a date,
however the query never returns any records, because the field contains both
the date and the time stamp -- I am not sure how to format the input or the
compare, to get this right.
Thank you,
Deb
Query:
SELECT PO_Items.PO_Num, Phone.Date_In
FROM (Phone INNER JOIN Phone_Models ON
Phone.Phone_Model_ID=Phone_Models.Phone_Model_ID) INNER JOIN PO_Items ON
(Phone.PO_Item_Id=PO_Items.PO_Item_ID) AND
(Phone_Models.Phone_Model_ID=PO_Items.[Phone Model])
WHERE (((PO_Items.PO_Num)=[Enter the PO Number]) AND ((Phone.Date_In)=[Enter
the Date]));