Expanding IF(ISBLANK formula
Hi,
I'm trying to expand this formula =IF(ISBLANK(Email@row), "Red", "Green") to return the same status result of "Red" if blank or "Green" if filled in, when any of the shown cells are blank, not just the email. I have tried many formulas with IF OR AND but I'm certain I'm just not putting it together correctly. Any help would be appreciated.
=IF(ISBLANK(Email@row), "Red", "Green")
Best Answer
-
Try something like this...
=IF(OR(Company@row = "", [First Name]@row = "", [Last Name]@row = "", Title@row = "", Email@row = ""), "Red", "Green")
Answers
-
Try something like this...
=IF(OR(Company@row = "", [First Name]@row = "", [Last Name]@row = "", Title@row = "", Email@row = ""), "Red", "Green")
-
Thanks Paul! Works like a charm!
-
Happy to help! 👍️
-
i have same quesiton but have several columns, can it work without listing each column and having a range? Compnay@row:Email@row ="" ?
-
@Ahmed Elmonoufy Try something like this...
=IF(COUNTIFS(Company@row:Email@row, "") > 0, "Red", "Green")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 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!