Jun 17, 2008 #1 UcfMike IS-IT--Management Joined Mar 29, 2007 Messages 184 Location US I want to remove the first two characters from a string, but I don't know what those characters are going to be, how would I do this in report studio?
I want to remove the first two characters from a string, but I don't know what those characters are going to be, how would I do this in report studio?
Jun 17, 2008 #2 blom0344 Technical User Joined Mar 20, 2002 Messages 3,441 Location NL Use substring function and start with position 3 in the string: substring('ABCDE',3,10) yields 'CDE' Ties Blom Upvote 0 Downvote
Use substring function and start with position 3 in the string: substring('ABCDE',3,10) yields 'CDE' Ties Blom