Break up my URLs? Can't figure it out...

D

Don Guillett

I should just direct you to excel help index for LEFT, FIND & MID but if you
want formulas try these.

=LEFT(C12,FIND("com",C12)+2)
http://www.mysite.com

my-page
=MID(C12,FIND("com",C12)+4,FIND("html",C12)-FIND("com",C12)-5)
 
D

duane

see MID function, if expression in cella1

=mid(a1,12,10)

if the site name is variable in length it gets a little more comlpe
 
Top