LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,560
Default Hyperlink Question

I am changing Location Names in Column A by Row Number. Each Location in
Column A has a hyperlink to a worksheet. I am also changing the worksheet
name.
When I do this, the hyperlink breaks.

I need to update the hyperlink in Column A to the new name of the worksheet.
Example. The old location name in Column A, Row 16 may be Richmond, VA.
A16 is also a hyperlink to a worksheet named Richmond, VA.
When I change A16 to Baltimore, MD, the worksheet Richmond, VA is changed to
Baltimore, MD, but the hyperlink in A16 no longer functions. I need to update
the hyperlink in A16 to the new worksheet name to go to Baltimore, MD.

PLEASE HELP!

Here is the code I'm using to change the names...

RowNum = Application.InputBox(prompt:="What is the Row Number of the
Location You Want to Change?", Type:=2)
FranNum = Application.InputBox(prompt:="What is the Franchise Number You
Want to Use?", Type:=2)
LabelName = Application.InputBox(prompt:="What is the Franchise Name You
Want To Use?", Type:=2)

Sheets("Summary Report of Revenue").Select '<<= Where Location Names Are

If RowNum = "0" Then
'do nothing
Else

Cells((RowNum), 1).Select
OldLabelName = Cells((RowNum), 1).Value


Columns("B:B").Select
Selection.EntireColumn.Hidden = False

Cells((RowNum), 2).Select

ActiveCell.FormulaR1C1 = (FranNum)
'Range("A10").Select
Cells((RowNum), 1).Select
ActiveCell.FormulaR1C1 = (LabelName)
'Range("A10").Select
Cells((RowNum), 1).Select
Selection.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
Sheets(OldLabelName).Select
Sheets(OldLabelName).Name = (LabelName)

Sheets("Summary Report of Revenue").Select
Cells((RowNum), 2).Select
Sheets("Summary Report of Revenue").Cells((RowNum), 2).Hyperlinks.Add
Cells((RowNum), 2), "", (LabelName), "My Hyperlink "

Don't know what I'm doing with the last line.....
 
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
Hyperlink Question Dennis Excel Discussion (Misc queries) 0 November 30th 09 07:31 PM
Hyperlink Question stew Excel Discussion (Misc queries) 2 February 28th 09 06:18 PM
Hyperlink question dd Excel Programming 4 February 14th 07 05:06 PM
hyperlink question G Excel Discussion (Misc queries) 1 October 24th 05 02:49 PM
VBA Hyperlink Question Tom Ogilvy Excel Programming 3 July 13th 03 08:50 PM


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