google sheets remove first character

Solutions on MaxInterview for google sheets remove first character by the best coders in the world

showing results for - "google sheets remove first character"
Azariah
21 Nov 2017
1Using the RIGHT Formula
2=RIGHT(A2, LEN(A2)-1)
3
4Using the MID Formula
5=MID(A2,2,LEN(A2)-1)
6
7Using the REPLACE Formula
8=REPLACE(A2,1,1,"")