I have created query which contains about 140 records. Can anybody tell me how to display in this query only first 50 records?
I have created query which contains about 140 records. Can anybody tell me how to display in this query only first 50 records?
Show us the query.
Use Top N. So your query would look like SELECT TOP 50 fieldname....... Change to SQL view to be able to type this in.
Here is an example. Can you please show me how to display only first 3 records?
rici7,
I don't have acc2007 and can not open a file accdb.
The syntax is
SELECT TOP 3 * FROM PutYourTableNameHere