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

FILTERING STRINGS

Status
Not open for further replies.

ejastia

Technical User
Joined
Sep 3, 2012
Messages
62
Location
PH
Hi!

I need to filter {ARCUS.NAMECUST)that contains "wood" only. What formula will I use? Thanks.
 
WOOD" IN {ARCUS.CUSTNAME}
Will give you all names that contain the string "WOOD" regardless of whether it's part of the first or last name.
 
I do not believe the syntax is correct. But {ARCUS.CUSTNAME} like "*WOOD*" should work.
 
Either would work - although I would use the uppercase function to catch all. Charily's method is my go-to choice:

"WOOD" IN ucase({ARCUS.CUSTNAME})
 


I tried all and they worked. Thank you!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top