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!

Exclude Empty/Blank Fields in a Report 1

Status
Not open for further replies.

RADAZ

Technical User
Jun 20, 2003
9
US
I want to exclude all records in the database whose field, CallLog.Cause, is blank. This is the formula I'm using: not isnull ({CallLog.Cause}). I'm still getting the blank causes. [3Eyes]

Thanks in advance for you help.
 
Try:

Report->Edit Selection Formula->Record:

not(isnull({CallLog.Cause}))
and
{CallLog.Cause} <> &quot;&quot;

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top