Create the field for the serial number to be put into. Now you need to use two macros to number the records and a variable field for the starting number. Then set the next highest number in Field Definition.
1) Define a variable field VarNum, put it on a view and enter your starting number for the serialization.
2) Write two macros:
Serial1
. VIEW Switch to a worksheet view of the database
. FIND All
. RECORDS First
. RUN Serial2
Serial2
. SET yourserialfield = VarNum
. SET VarNum = VarNum + 1
. ENTER
. RECORDS Next
. RUN Serial2
3) Sort the worksheet high-to-low on the serial field and get the highest number assigned. Go to Create - Field Definition and for that serial field, set the next number in the default serial options to the highest assigned number plus 1.
That will do it! Sue Sloan, XpertSS.com