Auto Dating Formulas for Next Month
I have a formula that was built to generate as the 1st day of the next month following a Fail status. I had this working, but then we changed our terminology from Fail to Development and now it is just leaving my start date blank and I'm not sure why. I even tried recreating from scratch. Any thoughts?
Answers
-
Try This
=IFERROR(IF(MONTH([Attempt #3 Date]@row) < 12, IF([Attempt #3 Status]@row = "Development", DATE(YEAR([Attempt #3 Date]@row), MONTH([Attempt #3 Date]@row) + 1, 1), ""), ""), "")
-
This would generate the wrong date for any Attempts occurring in December though.
-
Sorry, try this.
=IFERROR(IF(MONTH([Attempt #3 Date]@row) < 12, IF([Attempt #3 Status]@row = "Development", DATE(YEAR([Attempt #3 Date]@row), MONTH([Attempt #3 Date]@row) + 1, 1), ""), IF(MONTH([Attempt #3 Date]@row) = 12, IF([Attempt #3 Status]@row = "Development", DATE(YEAR([Attempt #3 Date]@row) + 1, 1, 1), ""), "")), "")
-
It's still coming up blank:
-
I figured it out. There was a bug where my date column wasn't converting to a short date correctly on another sheet that feeds to the Attempt Date column on this sheet. I switched it to text and back to Date and now my formula works again. Thanks for your help though!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!