Created
December 13, 2016 22:22
-
-
Save tonjadwyer/a85b46b630cecbaa40119876752c4d6d to your computer and use it in GitHub Desktop.
Excel Formula Find Right
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(ISERROR(FIND("\",A2)),A2, RIGHT(A2,LEN(A2) - FIND("|",SUBSTITUTE(A2,"\","|",LEN(A2)-LEN(SUBSTITUTE(A2,"\","")))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Returns the string after the last '\' in A2 cell.