Viewing a Hyperlink in another cell

B

Ben

I have a list of hyperlinks in one cell and I would like to view the actual hyperlink in another cell.
Example: Cell (A2) Albany Area Chamber of Commerce (Hyperlink: www.albanyarea.org) I want cell A3 to show the hyperlink info.
 
S

steve smallman

Ben,

you need to strip out the text containing the address.
the following will work where the first occurrence
of "www" is in the hyperlink.

=RIGHT(A2,LEN(A2)-FIND("www",A2,1)+1)

Alternatively if all your links are formatted precisely
as shown in your post, you could
substitute "(Hyperlink: " and adjust the +1 at the end to
get the string you want.

Steve
-----Original Message-----
I have a list of hyperlinks in one cell and I would like
to view the actual hyperlink in another cell.
Example: Cell (A2) Albany Area Chamber of Commerce
(Hyperlink: www.albanyarea.org) I want cell A3 to show
the hyperlink info.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top