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
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!