Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
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 am trying to create a project as a child under the parent blueprint to maintain a hierarchical structure within the workspace. However, instead of being created under the parent folder, the projects are being provisioned as separate folders at the same level.
When attempting to provision a project, the provisioning process fails with the following error: {"done":false,"logs":"Error when attempting to copy template source folder."} Show more lines As part of troubleshooting, the AI Agent recommendation to review the blueprint source folders for broken dashboards and reports was…
Good afternoon. I am trying to create an update request to have contacts in a cell complete a voting task. I have been asking the AI what the issue is and it had good suggestions, everything it suggests is occurring on the sheet. The update request is to trigger when the "Launch update request" changes to checked. It will…