Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running Total won't display 0 1

Status
Not open for further replies.

ciscowiz

MIS
Apr 21, 2004
146
US
I am using CR9--I created a running total field to perform a count on a string field. On the "Evaluate" section of the running total I am using a formula where the field equals a specific string. It counts the instances of this string. Works fine unless there are no records to count. It displays nothing but I need it to display a zero value because my other function is depending on all numbers. Thanks to anyone who can help.
 
When referencing the running total in your formula, you could instead use:

(
if isnull({#myrunningtotal}) then 0 else
{#myrunningtotal}
) //etc.

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top