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

Data Criteria selection

Status
Not open for further replies.

tdf2437

Technical User
May 15, 2015
5
US
An inexperienced user of Crystal is in need of some assistance. I need to have specific data show on the report. Right now, one specific column shows either of the following results within each row: P, C, or null/blank. I need to prevent any row showing up on the report with a C. Is this done thru the parameters?
Appreciate any assistance, thanks
 
Go to Report -->Selection Formulas-->Record

Type
[tt]not ({table.field}='C')[/tt]


 
BettyJ's solution will work but you will also lose any records that have a NULL value in that field.
You will need to expand the record selection formula to:

Code:
(isnull({table.field}) or {tblEntity.EntityType} <> "C")

~Brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top