Hi, how do I create a query to list only the last 50 latest records of a
table????
Create a Top 50 query and sort on the date field (or whatever field
determines what is latest or oldest) descending.
Create a regular Select Query, then click on the Top Values tool
button (it probably says "All" at the present time) and enter the
value.
SELECT TOP 50 TableName.*, TableName.DateField
FROM TableName
ORDER BY TableName.DateField DESC;