Feb 25, 2002 #1 denko Programmer May 17, 2001 70 US Need help to create an Update query to trim 2 symbols from the right. IBM US -> IBM ABS US -> ABS A US -> A CHIR US -> CHIR Thanks
Need help to create an Update query to trim 2 symbols from the right. IBM US -> IBM ABS US -> ABS A US -> A CHIR US -> CHIR Thanks
Feb 25, 2002 #2 papparuff Programmer Nov 19, 2001 111 US left(YourField,instr(YourField," "-1) John Ruff - The Eternal Optimist Upvote 0 Downvote
Feb 25, 2002 #3 Pzoxic Technical User Feb 19, 2002 3 US Another way if you are specifically trimming a number of characters is: left(YourField,len(YourField)-3) This would trim the last 3 characters from the specified field. Upvote 0 Downvote
Another way if you are specifically trimming a number of characters is: left(YourField,len(YourField)-3) This would trim the last 3 characters from the specified field.
Feb 25, 2002 Thread starter #4 denko Programmer May 17, 2001 70 US Thanks Pzoxic - it worked Upvote 0 Downvote