IF / COUNTIF / Blank cell

I am using the below formula but when my reference sheet has a blank cell the formula returns a Yes. I need for it to return a blank cell.
=IF(COUNTIF({Option Exception Master List}, Account@row) > 0, "Yes", "No")
Answers
-
Hello @C. Perry,
This will populate a "Yes" if there's a blank.
=IF(AND(COUNTIF({Option Exception Master List}, Account@row) > 0, ISBLANK(Account@row) = TRUE), "Yes", "No")
This will populate a blank if there's a blank:
=IF(AND(COUNTIF({Option Exception Master List}, Account@row) > 0, ISBLANK(Account@row) = TRUE), "", "No")
https://www.linkedin.com/in/zchrispalmer/
-
My Account@row sheet is referencing {Option Exception Master List} and if Account@row sheet is on the reference sheet I need it to return Yes and if not no. If the Account@row sheet is blank I need it to return blank. Doe not look like your comments prior will allow this. Can you provide a good formula to do this.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 208 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!