IF (ISBLANK) checking more than one cell
I'm a beginner and trying to update this formula below to also produce a blank result if Reach@row is blank.
=IF(ISBLANK([Total Engmt]@row), " ", ([Total Engmt]@row / Reach@row))
Best Answer
-
Try this:
=IF([Total Engmt]@row <> "", IFERROR([Total Engmt]@row / Reach@row, ""))
Answers
-
=IF(ISBLANK([Total Engmt]@row) = TRUE (or FALSE, depending on what you want), " ", ([Total Engmt]@row / Reach@row))
This is the correct format for the formula!
-
This doesn't address if Reach is blank. The formula I have works to return a blank cell if Total Engmt is blank, but I also need it to return a blank cell if Reach is blank. As I have it now, I get an error "#DIVIDE BY ZERO" if Reach is blank.
-
Try this:
=IF([Total Engmt]@row <> "", IFERROR([Total Engmt]@row / Reach@row, ""))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 479 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!