Generate unique, random 4-digit numbers in a list
The command syntax below will generate a random 4-digit number in a field called "record" in your list. If your database has less than 10,000 names, this will create 0001-9999 in the database, with no value appearing twice. In reality it's simply indexing it on the "First" field, then assigning the record number based on that. Then it will re-index on zip, so that the number appears to be random.If you wish to index on a different field, simply change the reference to "first" to your desired field name. As with all commands, click on Edit>Fields and then use the syntax below in the Syntax box.
SET SAFETY OFF ON ERROR com_message=message() index on ALLT(first) tag mytag copy to "C:\temp.dbf" ZAP APPEND FROM C:\temp.dbf ALTER TABLE ALIAS() ADD COLUMN record C(4) REPLACE ALL RECORD WITH PADL(ALLT(STR(RECNO())),4,"0") index on ALLT(zip) tag myzip copy to C:\temp.dbf ZAP APPEND FROM C:\temp.dbf DELETE C:\temp.dbf |