Sign in to join the conversation:
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)
I created a template for a smartsheet because the previous owner no longer works for the company. I rearranged some of the columns and now the formulas are giving me this error. Can I clear the column formula and start over?
Hi there, I have a project where in the project plan, based on the start date selected for a task, I'd like Smartsheet to reference another sheet (which is the table of Sprint, Start Date, Proposed Completion Date, Sprint Label) and populate the Sprint Column with the correct Sprint Label). So the formular should check…
Hi Smartsheet Community! I am running into a problem and need some help with a Row ID formula using the match function. I have a project plan that is generating a unique Row ID, using a combination of an Auto ID Column Type (Row ID), the Client & Project Code, and a match formula to return the actual position of the row in…