How do I open a form at the point where my user can just start to input data without having to go to the last entry of the table before starting? The only order of the table is that the date is in descending order. I don't want my user to unknowingly start typing over existing records in the table.
Thanks folks. This was very helpful! Here is the actual code I used :
SELECT A.PlayerID, A.DATE, A.SkillLevelPlayed, A.NumRounds, A.NumBalls, A.WinLoss, A.Split, A.NumSafeties, A.BreakandRuns
FROM NineBallMatches AS A
WHERE A.DATE IN ( SELECT TOP 5 [DATE] FROM NineBallMatches WHERE PlayerID =...
I run a pool league. I have a large table of played matches. The table consists of PlayerID, Date, Win/Loss, Match Info........
The table is sorted by most recent date at top (ie. descending order) I want to create a report which includes the most recent 5 matches from every player. I can get...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.