Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 33
Default PLease Help..Neeed Hyperlinks from cell values

I have a column with links but would like to create a new column with
the urls they are point ting to

for example
A1=google but the hyperlink is www.google.com
I would like B1=www.google.com

A2=yahoo but the hyperlink is www.yahoo.com
I would like B2=www.yahoo.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,124
Default PLease Help..Neeed Hyperlinks from cell values

try
=HYPERLINK("http://www."&a1&".com")


--
Don Guillett
SalesAid Software

"Shani" wrote in message
oups.com...
I have a column with links but would like to create a new column with
the urls they are point ting to

for example
A1=google but the hyperlink is
www.google.com
I would like B1=www.google.com

A2=yahoo but the hyperlink is www.yahoo.com
I would like B2=www.yahoo.com



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default PLease Help..Neeed Hyperlinks from cell values

Try this one in B1
=HYPERLINK("http://www."&A1&".com")


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Shani" wrote in message oups.com...
I have a column with links but would like to create a new column with
the urls they are point ting to

for example
A1=google but the hyperlink is www.google.com
I would like B1=www.google.com

A2=yahoo but the hyperlink is www.yahoo.com
I would like B2=www.yahoo.com



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default PLease Help..Neeed Hyperlinks from cell values

sub Extracthypelinksaddress()
Dim hlnk as Hyperlink
for each hlnk in activesheet.hyperlinks
hlnk.parent.offset(0,1).Value = "'" & hlnk.Address
Next
End Sub

the most I could add is to come to your site and run the macro.

--
Regards,
Tom Ogilvy

"Shani" wrote:

I have a column with links but would like to create a new column with
the urls they are point ting to

for example
A1=google but the hyperlink is www.google.com
I would like B1=www.google.com

A2=yahoo but the hyperlink is www.yahoo.com
I would like B2=www.yahoo.com


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default PLease Help..Neeed Hyperlinks from cell values

B1: =Hyperlink("http://www." & a1 & ".com")

then drag fill down the column.

--
regards,
Tom Ogilvy

"Shani" wrote:

I have a column with links but would like to create a new column with
the urls they are point ting to

for example
A1=google but the hyperlink is www.google.com
I would like B1=www.google.com

A2=yahoo but the hyperlink is www.yahoo.com
I would like B2=www.yahoo.com


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hyperlinks in a cell Susana Excel Discussion (Misc queries) 0 April 10th 09 11:31 PM
Hyperlinks - Open new window or keep filter values on return JB Excel Discussion (Misc queries) 0 August 15th 06 10:34 PM
Excel Hyperlinks- cell content v. hyperlinks herpetafauna Excel Discussion (Misc queries) 2 May 23rd 06 04:39 AM
Please Help..Neeed VBA code to delete information in a cell Shani Excel Programming 5 May 11th 06 01:53 PM
hyperlinks to a cell Shoshi Gutreich Excel Discussion (Misc queries) 2 April 6th 05 06:53 PM


All times are GMT +1. The time now is 08:14 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"