Last active
May 20, 2019 11:23
-
-
Save adalenv/03dc0d1a4ebf541329b69ef0827b6eca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=IF(LEN(C1)>10,RIGHT(C1, LEN(C1)-2),C1) //remove first two chars if lengh> 10 | |
=RIGHT(A1, LEN(A1)-2) //remove first two characters | |
=CONCATENATE(A1," ",B1) //merge cells | |
=LEN() //get length |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
=RIGHT(b1, LEN(b1)-2)