I'm working in Access and I need to create a random 4 digit-number for a list of users separated into records. My query keeps returning the same random number for each record.
SELECT 1000 + (1999-1000)*RND() as [PassCodes],
stafflistEMAIL.Name, stafflistEMAIL.Description
FROM stafflistEMAIL;
How can I make this work, the other answered I've viewed don't provide a solution?