Aug 1, 2002 #1 bobbyr Programmer Nov 30, 2000 66 US I have a varchar string and I need to remove the first 3 characters, no matter what they are. Example: *A4This is my string I need to remove the *A4. Any suggestions? Thanks, Bobby R
I have a varchar string and I need to remove the first 3 characters, no matter what they are. Example: *A4This is my string I need to remove the *A4. Any suggestions? Thanks, Bobby R
Aug 1, 2002 1 #2 dgillz Instructor Mar 2, 2001 10,054 US Mid(String,4) should do the trick Software Training and Support for Macola, Crystal Reports and Goldmine 714-348-0964 dgilsdorf@mchsi.com Upvote 0 Downvote
Mid(String,4) should do the trick Software Training and Support for Macola, Crystal Reports and Goldmine 714-348-0964 dgilsdorf@mchsi.com
Aug 2, 2002 Thread starter #3 bobbyr Programmer Nov 30, 2000 66 US Worked great! Thanks! Upvote 0 Downvote