Created
June 18, 2013 16:36
-
-
Save dylanhthomas/5806991 to your computer and use it in GitHub Desktop.
Remove the Trailing slash from a cell in Excel.
This is especially handy when dealing with lots of urls. Replace "A1" with your cell.
This file contains 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(RIGHT(A1,(LEN(A1)-(LEN(A1)-1)))="/",LEFT(A1,(LEN(A1)-1)),A1) |
Thanks for the this, It worked like wow !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Working. Thanks