Remove Numbers/Character From Column

Toki

New Member
Joined
Jan 9, 2008
Messages
20
Hello all,

Not sure if this can be done or not but in A1 I have, for example:

11:23:17,http://www.website.com

The numbers vary but always in that form.

I am trying to eliminate the numbers and the comma, so all I have left in column A1 is the url's.

Can this be done?

Thanks!

I am on a mac using microsoft excel 2011
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
With your string in "A1" try:

=MID(A1,FIND("http",A1),LEN(A1)-FIND("http",A1)+1)
 
Upvote 0
this will get you the URL, you can lose the Hyperlink part of the function if you only need a readable URL like so

Excel Workbook
CD
311:alphadot,http://www.website.comhttp://www.website.com
411:23:17,http://www.otherwebsite.comhttp://www.otherwebsite.com
Sheet1


but if you need to be left with clickable hyperlinks use this

Excel Workbook
CD
2
311:alphadot,http://www.website.comhttp://www.website.com
411:23:17,http://www.otherwebsite.comhttp://www.otherwebsite.com
Sheet1
 
Upvote 0
How did you end up with that in A1, it wasn't in your original sample.

The formulas given should go in Column B to begin with:

Excel Workbook
AB
111:23:17,http://www.website.comhttp://www.website.com
2 
Sheet1
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,711
Members
452,939
Latest member
WCrawford

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