Mar 9, 2006 #1 ebizleads Technical User Joined Sep 14, 2005 Messages 57 Location US I have a 10 digit string...need to return the first 3 digits. Any ideas? 5088850155 Returns: 508 Thanks! Ebizleads
I have a 10 digit string...need to return the first 3 digits. Any ideas? 5088850155 Returns: 508 Thanks! Ebizleads
Mar 9, 2006 #2 DotNetGnat Programmer Joined Mar 10, 2005 Messages 5,548 Location IN Select left(yourstring,3) -DNG Upvote 0 Downvote