remove the first 4 characters in a string vba code example
Example 1: vba remove the first character of string
=RIGHT(string,LEN(string)-1)
Example 2: remove first character from string vb
NewString = OldString.Remove(0, 1)
=RIGHT(string,LEN(string)-1)
NewString = OldString.Remove(0, 1)