If Formula

Hi I'm trying to auto calculate the date. I was wondering if someone could assist. I'm not quite sure how to do it I believe it should be an if statement but I'm not sure how to write it.
I have a column that is Date of Last Correspondence, Days till follow-up, Next Follow up Date is the column that I want to auto populate.
Days till next correspondence is 7 Days, 15 Days, 30 Days, 45 Day, 60 Days, 90 Days, 120 Days, 365 Days. If Custom Number is selected I want the column to be blank.
I'm not sure how to write the formula. Any assistance would be great
For the test row I just put ==[Date of Last Correspondence]1 + 7 but I would like that to happen automatically.
Thank you
Comments
-
Try something like this...
=IF(ISBLANK([Custom Days]@row), [Date of Last Correspondence]@row + VALUE(LEFT([Days till follow up]@row, FIND(" ", [Days till follow up]@row) - 1)))
.
What this does is:
If the Custom Days column for that row is blank, then pull the leftmost characters from the Days till follow up column up until the space, convert it to a numerical value, then add it to the Date of Last Correspondence.
This will also allow you to add, edit, or delete options from the Days till follow up column without having to adjust the formula.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!