Automate Excel » VBA: Remove Characters from Left or Right Side of Variable Length String
If you always know the length of a string, it’s easy to remove characters from it. Example: If you have a string that is 10 characters and you want to remove 1 character from the Left side, simply return the right 9 characters: msgbox Right(Mystring, 9) T...