hollyheadhunter Posted August 20, 2013 Posted August 20, 2013 What is the quickest way to populate a repeating field -- when you want different data based on the record you are in? For instance, if DateField contains 8/20/13, I would like RepeatingField to contain: 8/20/13 8/21/13 8/22/13 8/23/13... But on another record, if DateField contains 11/20/13, I would like RepeatingField to contain: 11/20/13 11/21/13 11/22/13... Currently a script populates RepeatingField with a Loop and each Loop sets one of the field's repetitions. Is there a faster way?
Fitch Posted August 20, 2013 Posted August 20, 2013 You can make the repeating field a calculation: Extend( DateField ) + ( Get ( CalculationRepetitionNumber ) - 1 ) 1
Recommended Posts
This topic is 4112 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