Remove partial data within each Row, HOW??

excelboxnovice

New Member
Joined
Mar 6, 2016
Messages
8
I am very new to Excel so please excuse the limited knowledge of asking this question within this community.



I have a Column that contains website in each row. I need to remove ALL details except the final domain.


Basically, only need domain data AFTER the following phrase: url=


Some ROWs include the WWW while others simply have the domain. Note. Each ROW is different domain, the only element the same is the url=


Here is examples. note: I have changed the domain/url to respect the privacy.


COLUMN A:


A1: http://www.originalsource.com/goto.<wbr>php?type=l&agtid=129&url=www.<wbr>domain1.com; (only need www.domain1.com)

A2: http://www.originalsource.com/goto.<wbr>php?type=l&agtid=130&url=www.<wbr>domain2.com;
(only need www.domain1.com)

A3: http://www.originalsource.com/goto.<wbr>php?type=l&agtid=136&url=domain3.com
(only need domain3.com


etc





I look forward to your reply and thank you in advance for your feedback.


Please try to keep the answers very detailed (step by step) because of my limited excel knowledge.

 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Hi excelboxnovicein,
In cell B1 enter the formula =RIGHT(A1,LEN(A1)-3-FIND("url=",A1))
and fill the formula down the desired number of cells
 
Upvote 0
This works when only one domain is in the row, however sometimes in the rows contain multiple urls.

A!: http://www.originalsource.com/goto.<wbr>php?type=l&agtid=130&url=www.<wbr>domain2.com; http://www.originalsource.com/goto.<wbr>php?type=l&agtid=130&url=www.<wbr>domain2.com;

Usually its simply a repeat but its still showing in the formula you provided. Please advise.


BTW: I would greatly
appreciate feedback/advice on the two following question I posted earlier.

1.
http://www.mrexcel.com/forum/excel-questions/926252-column-row-move-some-row-data-how.html

2. http://www.mrexcel.com/forum/excel-...ing-arranging-columns-incorrect-row-data.html
 
Upvote 0
can you make an example of multy domain url? are those domain connected with ";"?
do you mean that there can be more than one url in a cell? or there are more than one domain in each url?
 
Last edited:
Upvote 0
put this code in a module
Code:
Function dom(ByVal os As String) As String
Dim s As Variant, v As Variant, i As Integer
s = Split(os, "http://")

ReDim v(1 To UBound(s))
For i = 1 To UBound(s)
    v(i) = Split(s(i), "url=")(1)
    v(i) = Split(v(i), ";")(0)
    If dom = NullString Then
        dom = v(i)
    Else
        dom = dom & ";" & v(i)
    End If
Next i
End Function
use this formula
=dom(cell reference)
 
Last edited:
Upvote 0
As the example showed. url and then ";" with another url and possibility another ";" all within the same cell.

if you have any other questions let me know.
 
Upvote 0
Maybe this:
Code:
Sub a926268()
Dim r As Range
Dim arr1

For Each r In Range(Range("A1"), Range("A" & Cells.Rows.count).End(xlUp))
arr1 = Split(r, "url=")
r.Offset(0, 1) = arr1(UBound(arr1))
Next

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,819
Messages
6,121,749
Members
449,050
Latest member
excelknuckles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top