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

surpessing accounts ending in zero

Status
Not open for further replies.

chuchuchui

Technical User
Joined
Dec 23, 2004
Messages
33
Location
US
Crystal XI

I'm trying to supress alphanumric account numbers that end with a zero, the alpha portion being at the front. An example would be, under the supress section {accountnumber] endsWith 0 though I know there is not endsWith but is there someway to accomplish that?
 
Try:

right(trim({table.accountnumber}),1) = "0"

Rather than suppression, use the Report->Selection Formulas->Record. This will eliminate the rows from the report.

-k
 
Oh, and the record selection would show the reverse, as in:

NOT(right(trim({table.accountnumber}),1) = "0")

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top