Press Ctrl+G to open the Immediate window.
Enter:
Randomize
You get no response when you press enter, it it reseeds the random number
generator. For more info, put the cursor in the word, and press F1.
If you need Access to do that automatically every time you start:
1. Choose the Modules tab of the Database window, and click New.
Access opens a new module.
Paste this in:
Function Init()
Randomize
End Function
Save the module with a name such as Module1.
2. Create a new macro, and choose the RunCode action.
In the lower pane, beside the Function Name argument, enter:
Init()
Save the macro with the name AutoExec
The macro name is important. Access will run this every time your database
opens.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Thanks Allen
>
[quoted text clipped - 20 lines]
>>> The table has an autonumber value and I want it get a random set of
>>> auto-generated numbers with each query.