If a conditional running total doesn't select any data, the value returned is NULL. This might appear on the report as blank, but really it is NULL (No Data). Makes sense when you think about it in those terms.
Two solutions to fix this.
1) Under File/Report Options tick the box that says "Convert other NULL values to default. Warning: this might mess up some other NULL processing you might be using as required.
2) Include another formula in the report to conver the NULL for that running total to zero:
If IsNULL({#My Running Average}) then 0
else {#My Running Average}
Use this formula in your report instead of the running total field
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.