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
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])
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)
Hoping that the community can explain this issue I cannot solve (nor can AI). Today we added a Y2026 Savings column to our sheet. Column formulas were all updated as well to look for values with "effective dates" in their corresponding years. Sheet Summary (for Dashboard) formulas broke returning "INVALID DATA TYPE". Tried…
I'm building simple asset tracking system with Smartsheet and would like to have the row links as QR-codes that would then be printed as asset tags. I have not been able to find a feasible solution for pulling the row links for each asset (row). Doing manual copy paste for >2000 rows is not very convenient. I have a column…
This calculation worked before I added an additional value (Alignment Ops Goal Value). The row I have outlined is computing to "1"… not "2" which would include the updated formula with additional Alignment Ops Goal Value. Any help on why this new column isn't being calculated? Its just a simple calculation and I am…