Have an IF Statement Change the status of a field when a value in another column is less then 2
Title is worded weird, but here's a better explanation.
I am looking for an IF Statement that reads "If Total Emails per app is less than 2, then change status to Additional Research Needed."
Here's my attempt at the formula:
=IF([Total Emails per Application]:[Total Emails per Application] < 2, "Additional Research Needed", "Certified")
In the screenshot below, I am getting an "Invalid operation" error.
But basically what I am trying to do is to prevent users from selecting "certified" if the total emails per application is 1 or 0.
Best Answer
-
Hi,
You're getting an error because you're trying to have the IF statement evaluate a range against a condition and not the cell. The formula below should work for what you're looking to accomplish:
=IF([Total Emails per Application]@row < 2, "Additional Research Needed", "Certified")
Let me know if you have any questions.
Best,
Mike
Answers
-
Hi,
You're getting an error because you're trying to have the IF statement evaluate a range against a condition and not the cell. The formula below should work for what you're looking to accomplish:
=IF([Total Emails per Application]@row < 2, "Additional Research Needed", "Certified")
Let me know if you have any questions.
Best,
Mike
-
Thank you Mike.
I see what I was doing wrong. Instead of selecting the range, I could have just select that single cell. I tend to get confused on that every time when it comes to formulas. I guess I overthink it believing that it will always look at the one cell and not the others in that column.
I get it now, because it will look at the others once I "convert column to formula".
Just rambling, but thanks a lot. Worked like a charm
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 69 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!