URL convert

Forestq

Active Member
Joined
May 9, 2010
Messages
482
Hi,

if in field, I have value with hyperlink. I'm removing the value and put it just hyperlink

example: A1 = "MREXCEL"
where MREXCEL is link into "MrExcel.com | Excel Resources | Excel Seminars | Excel Products"

after macro I get only the link: A1 = "MrExcel.com | Excel Resources | Excel Seminars | Excel Products"

Code:
For i = 2 To LastRow
.Range("CV" & i).Value = url(.Range("CV" & i))
.Range("CW" & i).Value = url(.Range("CW" & i))
Next i
How to add "if condition" that check me that the value if it is hyperlink or it is value - and if it`s hyperlink, then run me my code if not leave it.
 
Last edited:

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.

Forum statistics

Threads
1,223,214
Messages
6,170,771
Members
452,353
Latest member
strainu

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