Aussie John Posted December 24, 2005 Posted December 24, 2005 Hi I wanted to create a series of dates starting at a particular date then continuing at weekly intervals after. I thought I could use a repeating field. Is it possible to define each field as a calculation based on the previous field (ie previous field plus 7). Maybe there is a better way, but it needs to be dynamic and changes depending on the initial date. This is the first step in making a project task based timeline database. I'm hoping i can use the same theory for the actual task duration and display. Thanks for any help!!
Aussie John Posted December 24, 2005 Author Posted December 24, 2005 (edited) actually found my solution use a calculation "Get ( currentDate )+(Get ( CalculationRepetitionNumber )*7)" Edited December 24, 2005 by Guest
Aussie John Posted December 24, 2005 Author Posted December 24, 2005 actually now a problem if I substitute a field date instaed of the current date it no longer works datestart+(Get ( CalculationRepetitionNumber )*7) the first field is ok but the next dates go back to the year 0001
LaRetta Posted December 24, 2005 Posted December 24, 2005 You need to include Extend(). Result is date. Try: Extend ( datestart) + (Get ( CalculationRepetitionNumber )*7) It would have worked with Get(CurrentDate) because it isn't tied to the current record. Referencing a date field would be.
Aussie John Posted December 24, 2005 Author Posted December 24, 2005 thanks La Retta that got it going
Recommended Posts
This topic is 6974 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