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

Surpressing data, if ....

Status
Not open for further replies.

jellybead

Technical User
Apr 30, 2004
13
US
Hello All,
We are using CR8.5 and I am trying to eliminate records if the string DATA is part of the part number field, AND the unit price is 00.00.


This is what I have so far, but it won't work.

IIf ({CNX_DELIVERY_PERFORMANCE\.SALE_UNIT_PRICE}="000")and ({CNX_DELIVERY_PERFORMANCE\.CATALOG_DESC}="*DATA")
then ""

Any suggestions would be greatly appreciated.

Thanks, Jellybead
 
That does "This is what I have so far, but it won't work." mean? Getting errors? Wrong results? Won't work isn't descriptive.

Try going into the Report->Edit Selection Formula->Record and use:

not((
{CNX_DELIVERY_PERFORMANCE\.SALE_UNIT_PRICE}="000"
)
and
(
{CNX_DELIVERY_PERFORMANCE\.CATALOG_DESC} like "*DATA"
))

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top