Matrixxdg Posted July 18, 2011 Posted July 18, 2011 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
Fitch Posted July 18, 2011 Posted July 18, 2011 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
Matrixxdg Posted July 18, 2011 Author Posted July 18, 2011 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
Recommended Posts
This topic is 4910 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 accountSign in
Already have an account? Sign in here.
Sign In Now