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

How to exclude specific subtypes from even showing

Status
Not open for further replies.

vhagerty

Technical User
May 6, 2005
15
0
0
US
I'm using Crystal Reports 9/SQL with the Track-It application. The report has only the one group {tasks.wotype2} and it shows them in ascending order. I need to somehow keep the subtypes of "Account Request" and "Conference" from showing in the report at all. What are my options to make this happen?
 
Use Report->Selection Formulas->Record and place:

not({tasks.wotype2} in ["Account Request","Conference"])

-k
 
I had another formula in that location so it now reads

IsNull ({tasks.COMPLETED}) or {tasks.COMPLETED} = Date (0, 0, 0)and not({tasks.wotype2} in ["Account Request","Conference"])

but the report is still showing the Account Requests and Conferences

any other idea?
 
Try using parenthesis:
(IsNull ({tasks.COMPLETED}) or {tasks.COMPLETED} = Date (0, 0, 0)) and
not({tasks.wotype2} in ["Account Request","Conference"])

MrBill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top