Hopefully, this will be transferable to your data.
It incorporates two queries
Using Northwind's Products table, the intent is
to isolate the 4th - 8th products in an alpha sort
listing.
Query 20:
Code:
SELECT TOP 8 Products.ProductName
FROM Products
ORDER BY Products.ProductName;
Query 21:
Code:
SELECT top 5 Query20.ProductName
FROM Query20
ORDER BY Query20.ProductName DESC;
This will return records 4-8 from Query20,
but sorted in reverse order. If, in preview
mode, you click on Sort Ascending from
the toolbar, then save the query, it will from
that point on display the records in the
desired sequence. (It's apparently saving
the layout of the query, without modifying
the query SQL.)