Dashboard and Sheets - Making 0 appear instead of error or formula

Good evening
When we are setting up dashbaords and we have not yet enetered data , how do we make that data show a "0" instead of "# Divide By Zero" , it just looks messy....
Β
Thank youΒ
Comments
-
Wrap your formula with an IFERROR() formula.Β For instance...
=IFERROR(1 / 0, 0).Β Since 1/0 will give you an error, the formula will return a 0.
-
OK thanks so if my formula wasΒ
=SUM([Series ID]43 / [Series ID]42
Β
then it would beΒ
Β
=IFERROR(SUM([Series ID]43 / [Series ID]42) ?
It stilllΒ is not working,
Sorry still learning the syntax
Β
-
Close. You just need to add what to display if there is an error.
Β
=IFERROR([Series ID]43 / [Series ID]42, 0)
Β
=IFERROR([original statement], [what to display if there is an error in the original statement])
-
Thank youΒ
Β
I got theΒ =IFERROR([Series ID]43 / [Series ID]42, 0)Β Β to work! Awesome
Β
But I tried with this one below and it is not returning a 0
Β
Β
=IFERROR([Performance Meter]85),0)
Β
Newbie! Sorry but your help is greatly appreciated!
-
You have an extra closed parenthesis after the cell reference. Removing that should get you squared away.
Β
=IFERROR([Performance Meter]85, 0)
Help Article Resources
Categories
Check out the Formula Handbook template!