OK this should be easy.....
I'm getting results with vProjection.Date > 5/30/2008.
vProjection is a linked SQL2005 view in access and Date is a smalldatetime.
WTF?!?!?!!
Thanks in advance for showing me the errors in my ways.
Scott
Code:
SELECT vProjection.Date, vProjection.Project, vProjection.Term
FROM vProjection
WHERE (((vProjection.Date)<#5/30/2008#) AND ((vProjection.Term) Is Null))
ORDER BY vProjection.Date DESC;
I'm getting results with vProjection.Date > 5/30/2008.
vProjection is a linked SQL2005 view in access and Date is a smalldatetime.
WTF?!?!?!!
Thanks in advance for showing me the errors in my ways.
Scott