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!

Correct syntax for not null

Status
Not open for further replies.

shaleen7

MIS
Jun 23, 2002
188
US
I want to include any fields that are not null
in my query.

But the following syntax does not work:
isnotnull({TABLE.DATE})

Any suggestions?
 
The correct syntax is:

not isnull({table.date})

If this doesn't work, you could try:

not (isnull({table.date})) or
{table.date} <> date(0,0,0)

-LB
 
If you want to remove ROWS (not fields) if a certain FIELD (column) is null, use Report->Edit Selection Formula->Record

and place something like:

not isnull({table.field})

If that field is NULL (not zero or blank), then the entire row will be eliminated.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top