Help with formula
I am currently using this formula and it works just fine.
=IF(AND([90 Day Window 3]@row = "Ready", [60 Day Window 2]@row = "Ready", [30 Day Window 1]@row = "Ready"), "Ready", "Not Ready")
But I am trying to add another part to it that has 2 things to referance to make true but does not work and Im sure its becuase or the refeance of the 2 things that need to make it true instaed of 1 as in the other formula. What I need to know is there a different sytax I should be using since I am referancing 2 things instead of one. What I am trying to add is the MOC Phase and they need to have either Montior or N/A in the cell that I am referancing to make sure but I cannot get this to work.
=IF(AND([90 Day Window 3]@row = "Ready", [60 Day Window 2]@row = "Ready", [30 Day Window 1]@row = "Ready", [MOC Phase]@row = "Monitor", "N/A"), "Ready", "Not Ready")
Best Answer
-
You are missing a comma just before the last "Ready".
Answers
-
You need an OR.
=IF(AND(………………………….. "Ready", OR([MOC Phase]@row = "Monitor", [MOC Phase]@row = "N/A")), "Ready", "Not Ready")
-
when putting this in : =IF(AND([90 Day Window 3]@row = "Ready", [60 Day Window 2]@row = "Ready", [30 Day Window 1]@row = "Ready", OR([MOC Phase]@row = "Monitor", [MOC Phase]@row = "N/A"))"Ready", "Not Ready")
I get the error coulum formula is not quite right screen -
Should I be telling it AND instead of OR?
-
These all have to be true to make a certain cell say READY currently
-
You are missing a comma just before the last "Ready".
-
That fixed it. Thank you so much for the help 😀
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!