Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default View Hyperlink in another cell

I have a spreadsheet that contains a hyperlink and would like to be able to
copy the hyperlink to another cell so I can pull all into access to link to
other tables for mapping screens. When I look at the cell it shows:
AAD: AWDU11 - Award Amount Definition

When I hover the mouse over the cell it shows the hyperlink of:
http://clients.datatel.com/support/d...18.0/40396.cfm

I would like to keep the original cell and display the hyperlink in another
cell.

Any help would be great.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default View Hyperlink in another cell

Maybe you could use a userdefined function to extract the hyperlink from the
cells that have them.

Option Explicit
Function GetURL(Rng As Range) As String
Application.Volatile

Set Rng = Rng(1)

If Rng.Hyperlinks.Count = 0 Then
GetURL = ""
Else
GetURL = Rng.Hyperlinks(1).Address
End If
End Function

So if you had a hyperlink in A1, you could put =getURL(a1) in that adjacent
cell.

Be aware that if you change the hyperlink, then this formula cell won't change
until your workbook calculates.

If you're new to macros:

Debra Dalgleish has some notes how to implement macros he
http://www.contextures.com/xlvba01.html

David McRitchie has an intro to macros:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Ron de Bruin's intro to macros:
http://www.rondebruin.nl/code.htm

(General, Regular and Standard modules all describe the same thing.)

Short course:

Open your workbook.
Hit alt-f11 to get to the VBE (where macros/UDF's live)
hit ctrl-R to view the project explorer
Find your workbook.
should look like: VBAProject (yourfilename.xls)

right click on the project name
Insert, then Module
You should see the code window pop up on the right hand side

Paste the code in there.

Now go back to excel.
Into a test cell and type:
=getURL(a1)

Mike57 wrote:

I have a spreadsheet that contains a hyperlink and would like to be able to
copy the hyperlink to another cell so I can pull all into access to link to
other tables for mapping screens. When I look at the cell it shows:
AAD: AWDU11 - Award Amount Definition

When I hover the mouse over the cell it shows the hyperlink of:
http://clients.datatel.com/support/d...18.0/40396.cfm

I would like to keep the original cell and display the hyperlink in another
cell.

Any help would be great.


--

Dave Peterson
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
change email Hyperlink from picture to text view? any ideas? Jeannie Excel Worksheet Functions 0 December 4th 08 12:48 AM
Hyperlink to folder only brings up Explorer's Folders view Bob W Excel Discussion (Misc queries) 0 January 21st 08 02:49 PM
view of cell contents changes to #### when cursor leaves cell, ev. OTadjprof New Users to Excel 1 July 31st 07 06:48 PM
How do I create a hyperlink to a cell with the hyperlink function S. Bevins Excel Worksheet Functions 2 July 20th 06 08:06 PM
Copy hyperlink from one cell to/as hyperlink in another cell YogS Excel Worksheet Functions 6 January 12th 06 11:57 PM


All times are GMT +1. The time now is 06:01 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"