Jun 17, 2008 #1 UcfMike IS-IT--Management Mar 29, 2007 184 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 Mar 20, 2002 3,441 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