I have a query that returns the Delta % for pair of data points. I use this information in a report. Due to the nature of the report some data points have a zero value. This is not a problem when the zero is the second value as it just returns an unusual % change. The real problem for my managers is the #Div/0! error message that comes up when it attempts to divede by zero.
What would I have to add to the above expression to avoid the division by 0 error?Code:Delta: ([Test1]-[Test2])/[Test1]))