J
jamccarley
Is there a way to set up a query to bring up only the last entry in the
database?
database?
Is there a way to set up a query to bring up only the last entry in the
database?
If you mean in a table, set up a summary query and choose Last for your
summary option. In SQL it looks like this:
SELECT Last(tblTest.FLD_1) AS LastOfFLD_1, Last(tblTest.FLD_2) AS LastOfFLD_2
FROM tblTest;