here is a simple way to create a linkage to the records. But you have to keep the have dataset someplace safe that others who should not have access to it can not reach it.
data have(keep=myid name); set sashelp.baseball; MyID = _n_*2.5/3.67; run;
apply some type of sort order would also assist in mixing things up.
... View more