Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi, my problem is that I have thousends of cells with HYPERLINK function in
it, but I need to paste them as paste special so the hiperlink is still enabled but without leaving the function. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Here is a possible aproach that you may adapt to your sheet. Let's say we
have a single column of hyperlink formulas, column A. We will use a macro copy the material in column A to column B, but without formulas. 1. make sure column B is empty (it will receive the converted links) 2. enter the following macro: Sub cnvrt() Dim s As String For Each r In Selection s = r.Formula ss = Split(s, Chr(34)) ActiveSheet.Hyperlinks.Add anchor:=r.Offset(0, 1) _ , Address:=ss(1), TextToDisplay:=ss(3) Next End Sub 3. in the worksheet, hi-light the cells in col A that contain the hyperlink formulas 4. run the macro Non-formula hyperlinks will appear in column B. The stuff in column B is what you can copy/paste -- Gary''s Student - gsnu200732 "HYPERLINK Fuction and Paste Special?" wrote: Hi, my problem is that I have thousends of cells with HYPERLINK function in it, but I need to paste them as paste special so the hiperlink is still enabled but without leaving the function. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can't make hyperlink function work for hyperlink to website | Excel Worksheet Functions | |||
How do I create a hyperlink to a cell with the hyperlink function | Excel Worksheet Functions | |||
Copy Function into other cells | Excel Worksheet Functions | |||
How to copy the hyperlink of a list of cells in another column | Excel Worksheet Functions | |||
Intra-workbook hyperlink: macro/function to return to hyperlink ce | Excel Discussion (Misc queries) |