cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Div/0 error returns empty for graph

Former Member
0 Likes
442

Hi in some cases the measurement can't be calculated due to missing data. In that case I'd like the graph to show no value. Now it shows an error, which doesn't look good to the user.

The graph is looking ok in this example, indicating 0 would be false, therefore missing values are preferable but without the yellow error icon.

I want to solve for the error, but Webi doesn't seem to allow empty values. For example I've tried IF(Iserror{ [numerator] / [denominator]); ""; [numerator] / [[denominator]).

How to solve this appropriately?

View Entire Topic
MichaelGrackin
Contributor
0 Likes

Try reversing your formula using the Not() function and then do not return "". This will return a Null.

=If(Not(IsError([numerator] / [denominator]));[numerator] / [[denominator])

OR try this

=If([denominator]>0;[numerator] / [[denominator])

Former Member
0 Likes

Thanks, the latter is already sufficient!