I'm trying to use TOP 3 in a query that I've made the recordsource of a subreport and it returns no records. If I simply remove the "TOP 3" portion of the query, it returns records, no problem. Is there a caveat to using TOP 3 in certain ways? Here's the query I am using as my recordsource (the main report and subreport master/child field is AGProjectKey):
Any help would be greatly appreciated!
Code:
SELECT TOP 3 tAGProjectStatus.Initials, tAGProjectStatus.Date, tAGProjectStatus.Description, tAGProjectStatus.AGProjectKey FROM tAGProjectStatus ORDER BY tAGProjectStatus.Date DESC, tAGProjectStatus.AGProjectStatusKey DESC;
Any help would be greatly appreciated!