F
fishy
I have the following query:
SELECT tbl_times.[Staff Name], tbl_times.Date, tbl_times.Productivity INTO
tbl_Leaguestage1
FROM tbl_times
WHERE (((tbl_times.Date)=[Forms]![MainMenu]![txt_importdate]))
ORDER BY tbl_times.Productivity DESC;
I want tbl_Leaguestage1 to have an autonumber field so that I can assign a
ranking. I have seen various historic suggestions but couldn't get these to
work (maybe missing a function?).
I need the number sequence to be from 1-250 each time.
SELECT tbl_times.[Staff Name], tbl_times.Date, tbl_times.Productivity INTO
tbl_Leaguestage1
FROM tbl_times
WHERE (((tbl_times.Date)=[Forms]![MainMenu]![txt_importdate]))
ORDER BY tbl_times.Productivity DESC;
I want tbl_Leaguestage1 to have an autonumber field so that I can assign a
ranking. I have seen various historic suggestions but couldn't get these to
work (maybe missing a function?).
I need the number sequence to be from 1-250 each time.