Skip to content

Instantly share code, notes, and snippets.

@tonjadwyer
Created December 13, 2016 22:22
Show Gist options
  • Save tonjadwyer/a85b46b630cecbaa40119876752c4d6d to your computer and use it in GitHub Desktop.
Save tonjadwyer/a85b46b630cecbaa40119876752c4d6d to your computer and use it in GitHub Desktop.
Excel Formula Find Right
=IF(ISERROR(FIND("\",A2)),A2, RIGHT(A2,LEN(A2) - FIND("|",SUBSTITUTE(A2,"\","|",LEN(A2)-LEN(SUBSTITUTE(A2,"\",""))))))
@tonjadwyer
Copy link
Author

tonjadwyer commented Dec 13, 2016

Returns the string after the last '\' in A2 cell.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment