
Originally Posted by
orange
Please show us the sql of the query.
Here's the query i'm having problems with. When it runs it pulls up the record with that date and all the others after. It should be ignoring that date and then grabbing the others.
Code:
SELECT *
FROM P9CntrLnQ
WHERE (((P9CntrLnQ.StampTime)>#2/6/2014 4:27:12#));
How can you find dates AFTER the latest date entry in the table
I'm appending the query results into another table after running some calculations. The date that the query is looking at is from that append table (the latest date).
The SQL script above is from a test query I created to see why I was pulling in records that had already been appended. Everything was typed in at the query, it's not pulling the info from another source. I was hoping to narrow down where the issue was coming from, but this test query isn't working as expected so I'm thinking it's something I'm doing wrong in setting up the query. Although, to be honest, I havent a clue what it could be.
DD