hi
Do you need the last 15 records ordered by TXCLIPS.ID2 DESC?
If so, then order it by ASC then get the top 15.
SELECT *
FROM
(
SELECT TOP 15 TXMASTERS.ID1, TXCLIPS.ID2, " " AS Persons, TXCLIPS.NName AS Name, TXCLIPS.Comments, TXCLIPS.Start AS [Time In], TXCLIPS.End AS [Time Out], TXCLIPS.ID1...