How do I automatically calculate a due date based on the timeframe a form has been submitted?

Some background:
I receive requests for funding through a form that then auto-populates into my sheet. On the first of every month, 3 individuals receive an email notifying them that the applications from the previous month are available for review. The due date to review them is the one week from the day they get the notification email.
Example: An application submitted for funding from January 1-January 30th will have a review date of February 7th. An application submitted for funding from June 1 - June 30th will have a review date of July 7th.
How can I make these review dates autogenerate based on the timeframe the form was submitted? Not necessarily the exact date.
Best Answer
-
Ok. SO the 7th of the month after submission would look something like this (in a Date type column):
=DATE(YEAR([Submission Date]@row) + IF(MONTH([Submission Date]@row) = 12, 1, 0), IF(MONTH([Submission Date]@row) = 12, 1, MONTH([Submission Date]@row) + 1), 7)
Answers
-
-
@Paul Newcome All I have right now is
- A column that lists the date each application was submitted.
- A simple workflow that is set to email my three reviewers on the first of each month to go in and look at what has been submitted since the last time. This workflow is not an "if applications were submitted" set up because its a guarantee in my role that there will always be new ones.
Basically I need the review due dates to be on the 7th of each month after whatever month they were submitted in.
-
Ok. SO the 7th of the month after submission would look something like this (in a Date type column):
=DATE(YEAR([Submission Date]@row) + IF(MONTH([Submission Date]@row) = 12, 1, 0), IF(MONTH([Submission Date]@row) = 12, 1, MONTH([Submission Date]@row) + 1), 7)
-
@Paul Newcome Wow! It worked, you're a genius. Thanks!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.1K Get Help
- 448 Global Discussions
- 154 Industry Talk
- 503 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 80 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!