The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
I have three fields with values: ProjectStart, DaysInSprint, and Week. I want to compute a sprint start date and sprint end date based on these values.
ProjectStart = 02 April
DaysInSprint = 7
Week = 1, 2, 3, etc
Formula for Sprint Start should be Pr...
Because each sprint is a record. Therefore, each week-long sprint starts seven days after the prior one. The DATEADD function adds a set number of days to a date. I need to add start date +7 days for sprint 2, start date +14 days for sprint 3, etc.
T...