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!

Record Selection prob

Status
Not open for further replies.

AdamRicko

Technical User
Feb 19, 2009
97
GB
Hey Folks,

Should be a fairly simple one here but cant get my head around it, in my head its logical :S .

Here is my current record selection formulae:

{Sales.DayName} = "Saturday" and
(
{Sales.ItemName_P} startswith "11'" or
{Sales.ItemName_P} startswith "9's" or
{Sales.ItemName_P} startswith UpperCase ("Kil") or
{Sales.BaseUOM_P} startswith uppercase ("CASE") or
{Sales.BaseUOM_P} startswith uppercase ("PACK") or
{Sales.MainProductGroupCode_P} = "41"
)

Basically im looking to only show ceartain types of products that are sold on a Saturday.

All is working except for the "{Sales.ItemName_P} startswith "9's" or" but if i put this on its own and // the rest out it does work.

I think its something to do with my logic but am unsure.

Many Thanks in advance,

AdamRicko

CR 2008
 
Is it possible for {Sales.BaseUOM_P} to be Null

If Crystal encounters Nulls formula tend to fall over.

Add a condition to deal with Nulls for that field.

Ian
 
You don't need to specify ucase when hardcoding text. Can the field be lower or mixed case? Then use:

{Sales.DayName} = "Saturday" and
(
{Sales.ItemName_P} startswith "11'" or
{Sales.ItemName_P} startswith "9's" or
ucase({Sales.ItemName_P}) startswith "KIL" or
ucase({Sales.BaseUOM_P}) startswith "CASE" or
ucase({Sales.BaseUOM_P}) startswith "PACK" or
{Sales.MainProductGroupCode_P} = "41"
)

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top