Help with IF... Again
I can't seem to get the hang of formula differences between SS and Excel. Here's what I need:
I am trying to populate a status column based on a numerical value in another column. If the value is 197 or higher, I want a value of Yes returned. If lower, a value of No should be returned. Here is what has not worked for me:
=IF(AND([M1 through M8 Score]@row>=197, [M1 through M8 Score]@row<=196), "Yes", "No"). This returns a Status value of No regardless of the score value for every row.
Best Answer
-
Hi @L_Mallery,
It's the AND that is causing your formula to fail. The formula is looking for a number to be both >=197 AND <=196 at the same time, which cannot happen.
Try the following. =IF([M1 through M8 Score]@row >= 197, "Yes", "No")
Hope this helps,
Dave
Answers
-
Hi @L_Mallery,
It's the AND that is causing your formula to fail. The formula is looking for a number to be both >=197 AND <=196 at the same time, which cannot happen.
Try the following. =IF([M1 through M8 Score]@row >= 197, "Yes", "No")
Hope this helps,
Dave
-
Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 462 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 59 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!