August 2, 200520 yr I'm quite sure the answer to this is obvious. I would like to be able to place a number in a field...and then have a script which uses that number to create said number of blank records ("5" = 5 New Records). I can't seem to find any such "Create Multiple New Records" functionality. Thanks in advance for any help or suggestions. Kirk
August 2, 200520 yr Create a global number field (let's call it gNumber) then create this script: Loop Exit Loop If [ gNumber <= 0 ] New Record/Request Set Field [ gNumber, gNumber - 1 ] End Loop
Create an account or sign in to comment