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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running Total

Status
Not open for further replies.

ashark

Programmer
Nov 21, 2002
31
IN
Hi
I read the thread for Running totals and tried out the same.
But what if I don't use formulas?
I am receiving the zero values as Blank.
I am trying to use the inbuild Running Total functionality.

 
I recently learned that when summing (and perhaps other aggregates) a RT, CR can return NULL, a count RT doesn't do this...

Create a formula for display purposes using your created RT to check for NULL and change it to 0 if required:

if isnull({#MyRunningTotal}) then
0
else
{#MyRunningTotal}

-k kai@informeddatadecisions.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top