Aug 24, 2015 #1 ejastia Technical User Sep 3, 2012 62 PH Hi! I need to filter {ARCUS.NAMECUST)that contains "wood" only. What formula will I use? Thanks.
Aug 24, 2015 #2 Charliy Programmer Aug 12, 2008 601 US 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. Upvote 0 Downvote
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.
Aug 24, 2015 #3 kray4660 MIS Apr 7, 2008 1,054 US I do not believe the syntax is correct. But {ARCUS.CUSTNAME} like "*WOOD*" should work. Upvote 0 Downvote
Aug 24, 2015 #4 AndyMc Vendor Mar 17, 2001 333 US 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}) Upvote 0 Downvote
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})
Aug 24, 2015 Thread starter #5 ejastia Technical User Sep 3, 2012 62 PH I tried all and they worked. Thank you!! Upvote 0 Downvote