Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT TOP 10 Targets.ID, Targets.ShtrID, Targets.Gun, Targets.S, "" AS G, Shooters.Name
FROM Targets INNER JOIN Shooters ON Targets.ShtrID = Shooters.ShtrID
WHERE (((Targets.ShtrID)=[Forms]![NameList]![ShtrID]) AND ((Targets.Gun)="Light"))
ORDER BY Targets.ShtrID, Targets.Gun DESC , Targets.S DESC, Targets.ID;