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

Is Not Null as a Operator? 1

Status
Not open for further replies.

Stevehewitt

IS-IT--Management
Jun 7, 2001
2,075
GB
Hi Guys,

I am trying to use the following as a source control on a text box to count the number of records in the report that have a entry in the "rejectreason" field:

Code:
=Abs(Sum([RejectReason]=["IsNotNull"]))

I know that I am doing something wrong in terms of the "IsNotNull" part, but I don't know what to do. MS Help isn't helping and I'm pretty confused. (Works fine in a query).

Thanks,


Steve.

 
Try:

[tt]=Abs(Sum(not isnull([RejectReason])))[/tt]

Roy-Vidar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top