November 21, 200421 yr Is there a way of when entering a numerical value into a number FIELD, (say 5) and the equivalent number of New Records be created? Is this possible? If so how is this done, via a script or a simple Button? corey....
November 21, 200421 yr To do this you'll need a global field to store the number, and a short script with a loop that creates a new record, decrements the value of the global field by one, and exits when the value reaches zero. It will look something like this: Loop New Record/Request Set Field [_gMyGlobalField, _gMyGlobalField-1] Exit loop if [_gMyGlobalField <= 0] End Loop You can assign the script to a button if you like.
Create an account or sign in to comment