Clearing just the #DIVIDE BY ZERO cell result without clearing out cells that do have data.
=IFERROR(=([OPT K B]@row - [NONOPT K B]@row) / [NONOPT K B]@row, "")
I'm trying to summarize a column that cells contain both a percentage and a #DIVIDE BY ZERO result. I added a IFERROR to handle the #DIVIDE BY ZERO (clearing it) but it also clears any cell that contains a percentage.
I rather have the column formula handle the clearing so that my sheet summary doesn't have to handle the #DIVIDE BY ZERO
Best Answers
-
Try removing the second =
=IFERROR(([OPT K B]@row - [NONOPT K B]@row) / [NONOPT K B]@row, "")
-
Excellent! Thanks Carson that worked!
Answers
-
Try removing the second =
=IFERROR(([OPT K B]@row - [NONOPT K B]@row) / [NONOPT K B]@row, "")
-
Excellent! Thanks Carson that worked!
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!