I have searched the forums and tried various solutions posted. I am having a problem getting earliest date in my table. The field is called LastAssigned and is formatted as a General Date (since I may have more than one entry on each date). I have tried using
SELECT MIN(LastAssigned) FROM tblLog.
The query returns all the records in the table, not just the "earliest" date. Also, the results are not correct. The query is out of order, meaning a newer date is at the top.
I don't know if it makes a difference but the LastAssign is created by combining 2 fields from a form (Date and Time) input by a user. I can't just use the Now() function since data input may not occur at the time of the assignment.
Clear as mud? Thanks for any help, and I will gladly clarify any points as needed.
----
Access 2002 on a mixed Windows OS network.
SELECT MIN(LastAssigned) FROM tblLog.
The query returns all the records in the table, not just the "earliest" date. Also, the results are not correct. The query is out of order, meaning a newer date is at the top.
I don't know if it makes a difference but the LastAssign is created by combining 2 fields from a form (Date and Time) input by a user. I can't just use the Now() function since data input may not occur at the time of the assignment.
Clear as mud? Thanks for any help, and I will gladly clarify any points as needed.
----
Access 2002 on a mixed Windows OS network.