I want the top 3 "Downtime" for each "Line". The table is called "Top 3 Downtime" and I put this in the criteria of Downtime.
In (Select Top 3 [Downtime] From [Top 3 DownTime] Where
[Line]=[Top 3 DownTime].[Line] Order By [Downtime] Desc)
For some reason, this is only returning the top Downtime for 4 of the lines instead of 3 for all of the lines. Do you know why this is?