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

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

Recommended Posts

Posted

Hi All,

In FM11 How can I create a pop box that allows me to duplicate a certain record x amount of times. I put 5 in the pop and it duplicates a certain record 5 times.

Thx

MG

Posted

You'd need a script, either triggered on the field, or on a separate button. Something like:

Set Variable( $i ; yourNumberField )

Loop

  Exit Loop If( $i = 0 )

  Duplicate Record

  Set Variable( $i ; $i - 1 )

End Loop

Posted

You'd need a script, either triggered on the field, or on a separate button. Something like:

Set Variable( $i ; yourNumberField )

Loop

  Exit Loop If( $i = 0 )

  Duplicate Record

  Set Variable( $i ; $i - 1 )

End Loop

Worked great...thank you

This topic is 4895 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.