Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 7310 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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....

Posted

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.

This topic is 7310 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.