Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks Dave. Much appreciated. I'll have to digest this and work on it.
Regards Boysie "Dave Peterson" wrote: You could use something like this to remove the hyperlinks: Option Explicit Sub testme() Dim wks As Worksheet For Each wks In ActiveWorkbook.Worksheets With wks.Range("a1") If .Hyperlinks.Count 0 Then .Hyperlinks(1).Delete End If End With Next wks End Sub Then instead of using insert|hyperlink to create the hyperlink, you could use the =hyperlink() worksheet formula: Group all your sheets that get the hyperlink. (Select the first, and ctrl-click, or shift-ctrl-click to extend the selection.) Then select the cell that gets the hyperlink and type this: =HYPERLINK("#"&CELL("address",'Words'!A1),"click me") Then rightclick on any of the grouped worksheet tabs and select ungroup sheets. If you change the name of Words, this =hyperlink() worksheet function will adjust -- just like any other formula. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Boysie wrote: I have a workbook with appoximately 130 worksheets in it. On each sheet one cell is linked to the "master" sheet which lists all of the others. This sheet is named "Words". I now need another sheet named "Words" and the "Words" sheet changed to "Main". Easy at first but all the other sheets are linked to the "Words" sheet. Is it possible to edit the same cell in all of the worksheets at the same? Thanks for any help -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copying a cell that has a hyperlink | Excel Discussion (Misc queries) | |||
Possible Lookup Table | Excel Worksheet Functions | |||
Can you make a cell with a diagonal, so that you can edit the upper and lower part of the cell? | New Users to Excel | |||
Hyperlink within cell | Excel Discussion (Misc queries) | |||
Using a formula in a Hyperlink Cell reference | Excel Discussion (Misc queries) |