July 18, 201114 yr 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
July 18, 201114 yr 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
July 18, 201114 yr Author 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
Create an account or sign in to comment