Vba Remove First 2 Characters From String

[Solved] Vba Remove First 2 Characters From String | Vb - Code Explorer | yomemimo.com
Question : vba remove first 2 characters from string

Answered by : zwazel

myString = Right(myString,Len(myAtring) - 2)

Source : https://stackoverflow.com/a/41450730/12287687 | Last Update : Thu, 12 Aug 21

Question : vba remove the first character of string

Answered by : innocent-ibis-xtvpp7mhfhwx

=RIGHT(string,LEN(string)-1)

Source : https://www.exceldome.com/solutions/remove-first-character-from-string/ | Last Update : Mon, 28 Dec 20

Answers related to vba remove first 2 characters from string

Code Explorer Popular Question For Vb