Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to automaticly duplicate / copy a Hyperlink WITHOUT cut and pa

Say I have a hyperlink in Cell B2 I want to make a copy of that cell in B10
How would I do this..

If I just use the formula of =B2 in cell B10 it just shows the name of the
and NOT creating something that will allow me to click on it.

(I am actually doing this across pages in same workbook, but the concept
should be the same.

Any help would be appreciated


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 14
Default How to automaticly duplicate / copy a Hyperlink WITHOUT cut andpa

On Dec 1, 3:12 pm, Chromis wrote:
Say I have a hyperlink in Cell B2 I want to make a copy of that cell in B10
How would I do this..

If I just use the formula of =B2 in cell B10 it just shows the name of the
and NOT creating something that will allow me to click on it.

(I am actually doing this across pages in same workbook, but the concept
should be the same.

Any help would be appreciated


Select cell B2 by holding the left button until the hand turns to a
cross then copy the cell and paste it anywhere you wish. You should
have a copy of the original link.

regards

BigD
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to automaticly duplicate / copy a Hyperlink WITHOUT cut an

Sorry, I was wanting to do it without cutting and pasting.. I have been
cutting and pasting several hundred hyperlinks at about 100 or so at a time.
I need the raw data (including URLs on 1 page) I also want to work that raw
data with some caluculations on another sheet. on that other sheet, I would
also like the URLs.. The problem is, depending on sorting and custom
filters, I cannot just Cut and Paste the hundreds of URLS over as they will
not match anymore. So I would like it to be done automaticly, so I dont have
to search and find urls one at a time and cut and paste them over.

"BIG D" wrote:

On Dec 1, 3:12 pm, Chromis wrote:
Say I have a hyperlink in Cell B2 I want to make a copy of that cell in B10
How would I do this..

If I just use the formula of =B2 in cell B10 it just shows the name of the
and NOT creating something that will allow me to click on it.

(I am actually doing this across pages in same workbook, but the concept
should be the same.

Any help would be appreciated


Select cell B2 by holding the left button until the hand turns to a
cross then copy the cell and paste it anywhere you wish. You should
have a copy of the original link.

regards

BigD

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default How to automaticly duplicate / copy a Hyperlink WITHOUT cut and pa

Sub copyhyperlinks()'if simple
Range("c24:c26").Copy Range("f24:f26")
'or a one liner between sheets
sheets("sheet1").Range("c24:c26").Copy sheets("sheet2").Range("f24:f26")

End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Chromis" wrote in message
...
Say I have a hyperlink in Cell B2 I want to make a copy of that cell in
B10
How would I do this..

If I just use the formula of =B2 in cell B10 it just shows the name of the
and NOT creating something that will allow me to click on it.

(I am actually doing this across pages in same workbook, but the concept
should be the same.

Any help would be appreciated



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to automaticly duplicate / copy a Hyperlink WITHOUT cut an

Thank you for taking the time to answer my question, however, I am not sure
what to do with your answer.. I have opened Visual Basic for my first time
today, and I think that what you have above, needs to go in there. If not
where on the spreadsheet does this go? thank you.


"Don Guillett" wrote:

Sub copyhyperlinks()'if simple
Range("c24:c26").Copy Range("f24:f26")
'or a one liner between sheets
sheets("sheet1").Range("c24:c26").Copy sheets("sheet2").Range("f24:f26")

End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Chromis" wrote in message
...
Say I have a hyperlink in Cell B2 I want to make a copy of that cell in
B10
How would I do this..

If I just use the formula of =B2 in cell B10 it just shows the name of the
and NOT creating something that will allow me to click on it.

(I am actually doing this across pages in same workbook, but the concept
should be the same.

Any help would be appreciated






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4
Default How to automaticly duplicate / copy a Hyperlink WITHOUT cut an

Don,

Thank you very much, it works perfectly. Does exactly what I needed it to do.

Also, Thank you Mr McRitchie for the great website.. I will need to look in
there alot more closely.

"Don Guillett" wrote:

If you're new to macros, you may want to read David McRitchie's intro
at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Chromis" wrote in message
...
Thank you for taking the time to answer my question, however, I am not
sure
what to do with your answer.. I have opened Visual Basic for my first
time
today, and I think that what you have above, needs to go in there. If not
where on the spreadsheet does this go? thank you.


"Don Guillett" wrote:

Sub copyhyperlinks()'if simple
Range("c24:c26").Copy Range("f24:f26")
'or a one liner between sheets
sheets("sheet1").Range("c24:c26").Copy sheets("sheet2").Range("f24:f26")

End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Chromis" wrote in message
...
Say I have a hyperlink in Cell B2 I want to make a copy of that cell
in
B10
How would I do this..

If I just use the formula of =B2 in cell B10 it just shows the name of
the
and NOT creating something that will allow me to click on it.

(I am actually doing this across pages in same workbook, but the
concept
should be the same.

Any help would be appreciated






  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default How to automaticly duplicate / copy a Hyperlink WITHOUT cut an

Glad to help. Aren't you glad you worked on some of it by yourself.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Chromis" wrote in message
...
Don,

Thank you very much, it works perfectly. Does exactly what I needed it to
do.

Also, Thank you Mr McRitchie for the great website.. I will need to look
in
there alot more closely.

"Don Guillett" wrote:

If you're new to macros, you may want to read David McRitchie's
intro
at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm


--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Chromis" wrote in message
...
Thank you for taking the time to answer my question, however, I am not
sure
what to do with your answer.. I have opened Visual Basic for my first
time
today, and I think that what you have above, needs to go in there. If
not
where on the spreadsheet does this go? thank you.


"Don Guillett" wrote:

Sub copyhyperlinks()'if simple
Range("c24:c26").Copy Range("f24:f26")
'or a one liner between sheets
sheets("sheet1").Range("c24:c26").Copy
sheets("sheet2").Range("f24:f26")

End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Chromis" wrote in message
...
Say I have a hyperlink in Cell B2 I want to make a copy of that
cell
in
B10
How would I do this..

If I just use the formula of =B2 in cell B10 it just shows the name
of
the
and NOT creating something that will allow me to click on it.

(I am actually doing this across pages in same workbook, but the
concept
should be the same.

Any help would be appreciated







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
Excel 2000 should not hyperlink automaticly Sam Rothstein Setting up and Configuration of Excel 6 April 3rd 06 10:11 PM
automaticly copy data from one worksheet to another [email protected] Excel Discussion (Misc queries) 1 October 15th 05 03:48 AM
Removing all duplicate records except one copy adam a Excel Discussion (Misc queries) 8 August 30th 05 05:53 AM
Macro - to copy duplicate rows to another sheet [email protected] Excel Worksheet Functions 2 April 19th 05 01:53 AM
how can I duplicate or copy a workbook then divide selected cells. macros excel... duplication and calculat Excel Discussion (Misc queries) 1 November 29th 04 03:16 PM


All times are GMT +1. The time now is 07:15 PM.

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

About Us

"It's about Microsoft Excel"