Google Sheets Remove First Character

[Solved] Google Sheets Remove First Character | Typescript - Code Explorer | yomemimo.com
Question : google sheets remove first character

Answered by : andro-marces

Using the RIGHT Formula
=RIGHT(A2, LEN(A2)-1)
Using the MID Formula
=MID(A2,2,LEN(A2)-1)
Using the REPLACE Formula
=REPLACE(A2,1,1,"")

Source : https://spreadsheetpoint.com/remove-first-character-google-sheets/ | Last Update : Fri, 09 Oct 20

Answers related to google sheets remove first character

Code Explorer Popular Question For Typescript