Excel – How to extract partial data?
Issue
I have an Excel spreadsheet that contains around 1500 html links.
All the addresses start out common... i.e. http://www.frogs.com/. What I want to extract into another cell (or worksheet) is the uncommon part of the links. For example,http://www.frogs.com/bull_frogs
or http://www.frogs.com/tree_frogs.
Is there a way to automate this with a macro or something, or am I stuck doing each and every one manually?
Solution
Suppose the hyperlink is in A1 in c1 (or any other cell in row 1)
=RIGHT(A1,LEN(A1)-21)
So, suppose other hyperlinks are in A2 A3 etc copy C1 down
Note
Thanks to
venkat1926 for this tip on the forum.