Conditional Formula with Date requirment
Im having trouble combing a conditional formula. Both parts work on their own but when I try to join them it breaks.
So far this is what i have
=IF(AND([FINISH]1< [Go live Date]1), IF(Status1 = "In Progress", 1, IF(Status1 = "Not Started", 1, IF(Status1 = "At Risk", 1,0)))))
I'm trying to do a numerical count. If the Finish date is not past the Go live date and the status is either In progress, At Risk, or Not started then the formula should pull 1. If it does not fit these requirements than the formula should pull 0.
Any idea on what I'm doing wrong?
Best Answer
-
Hi @Ryan Jared
Try
=IF(AND([FINISH]@row< [Go live Date]@row, OR(Status@row = "In Progress", Status@row= "Not Started", Status@row = "At Risk")), 1, 0)
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Answers
-
Hi @Ryan Jared
Try
=IF(AND([FINISH]@row< [Go live Date]@row, OR(Status@row = "In Progress", Status@row= "Not Started", Status@row = "At Risk")), 1, 0)
Work?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
-
That worked, thank you!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.1K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 444 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 450 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 290 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!