WebMar 31, 2011 · I am working on the Crystal Reports and using Running Total to calculate the totals. If the total returns NULL or empty value, I want the value to appear as 0 Currently when there are no values to calculate, it returns only Blank. How can I check if the Running total value is Null and if it is, just return zero. Kindly reply. Thank you :) WebSep 26, 2006 · I've never heard of Crystal not recognizing a NULL or empty string correctly, but anything is possible. -k lbass (TechnicalUser) 25 Sep 06 18:59 You have to test for null first. The formula should be: if isnull ( {newdem.Customer}) or {newdem.Customer} ="" then "Internal" else {newdem.Customer} -LB Corres …
1214638 - Running total field displays as a blank instead of a zero
http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=8326 WebJun 6, 2006 · ISNULL () OR <>"" I would prefer to add a SQLExpression. It depends on the database type. For SQLServer it will be ISNULL (,'') then in the record selection formula add <>'' www.R-Tag.com Viewer and Scheduler for Crystal reports, SSRS and Dynamic Dashboards. read interesting
Crystal Reports Test for a null value in a date field
WebSometimes a Running Total field will be blank when you expect it to show 0 in a Crystal report. This might happen if the Running Total was unable to evaluate any records. In this case, the Running Total is null instead of 0. We can create a formula in Crystal Reports to display 0 instead of the blank value. Answer: http://www.crystalreportsbook.com/Forum/forum_posts.asp?TID=8326 WebHow to create formulas based on null values Answer: The ISNULL function checks for data within a cell - if a cell contains no data it "ISNULL." The basic syntax for using ISNULL in Crystal Report formulas is as follows: IF ISNULL ( {Constituent.LastName}) THEN {Constituent.OrgName} ELSE {Constituent.LastName} read internet headers