Remove part of text from all columns in an excel file -
I have an excel file that contains a column that displays the web source URL, the data looks like this ....
http://carter.mydomain.com/page1 http://expert.mydomain.com/page4 http://10629.mydomain.com/sample http: //genius.mydomain .com / form-1
etc
What do I need to do before and everything else has been removed (http: //) and everything else (.) In the previous examples, I want to be left with the following data in the columns
Carter
Expert
10629
Talent
Thank you in advance for any help with this
You can use a combination of such formulas. It is believed that A1 is the first line with Carter in it.
= MID (A1, FIND ("//", A1) + 2, FIND (".", A1, FIND ("//", A1)) - FIND ( "//", A1) -2)
Comments
Post a Comment