OK - This might not be elegant but it will work.
Lets assume you have a field in your primary table that numbers each record sequentially from 1 stepping up in integer values of 1
ie. 1,2,3,4,5......100,000
open a new Excel spreadsheet. in cell A1 enter the formula
INT(RAND()*100000)+1
Copy this formula down for say 250 rows.
You will get radom numbers in the range 1 - 100,000 but as they are truly random you may get duplicate values hence the extra lines.
Select the entire column and use edit copy click into say cell C1 and use edit paste special - as values into this column
You will notice the values in column A update to a ne set of random values. You could run this any number of times pasting the values into a new column each time. This will allow you to record/track the values you have used before.
Having got your values you can link to this worksheet as a table use a duplicate values query to eliminate any duplicate entries and then take the top 200 records. If you then link this table to your original table on the basis that you only want records where both valus match you've got it.
As I said not elegant-but it works.
Cheers