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

How can my running total not count the null values?

Status
Not open for further replies.

a211097

MIS
Oct 9, 2008
1
US

I’m doing a running total to count the number numeric values in a column for a report but there are also NULL values in this column as well. The count is counting the null values as “1” as well as the values I want to count.

How can my running total not count the null values?
 

In the running total expert
In Evaluate, select "use a Formula"

Then put
not(isnull({FIELD_NAME}))

If these are NULL fields, it will exclude them but if they are blank fields you would need to put

Not {FIELD_NAME} = ""

Hope that helps


regards

BB

*** Count your blessings not your problems******
:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top