+ Reply to Thread
Results 1 to 4 of 4

Macro to follow dynamic hyperlinks

  1. #1
    Registered User
    Join Date
    05-29-2010
    Location
    England
    MS-Off Ver
    Excel 2003
    Posts
    58

    Macro to follow dynamic hyperlinks

    I want to use a piece of VBA or a macro to follow a dynamic hyperlink and then carry out an action.

    The dynamic hyperlink would look like this:
    =hyperlink('#sheetname!B'&B2,"Link")

    And the VBA or macro I'm trying is a simple;
    Range("B2").Hyperlinks(1).Follow (True)

    This doesn't work - it brings up a debug window. It will only work when the hyperlink is absolute (ie, I've right clicked the cell and setup the hyperlink that way) - this isn't sufficient for my requirements - is there anything I can do to make this VBA/macro work with a dynamic hyperlink formula?

    Thanks in advance,
    Sam

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Macro to follow dynamic hyperlinks

    The HYPERLINK worksheet functio doesn't create a hyperlink attached to the cell as you would when you right click and goto Hyperlink...

    So there are no items in the Hyperlinks collection for the cell.

    Have you considered using code to add the hyperlink(s) instead of fomula(s)?
    If posting code please use code tags, see here.

  3. #3
    Registered User
    Join Date
    05-29-2010
    Location
    England
    MS-Off Ver
    Excel 2003
    Posts
    58

    Re: Macro to follow dynamic hyperlinks

    Thanks for the idea Norie. I also did it this way for anybody interested;

    A1 contains sheet name Sheet1! and B1 contains cell reference (in this case G2).

    The macro is;

    Sub Macro4()
    '
    ' Macro4 Macro
    ' Macro recorded 28/11/2013 by daviescs
    '

    '
    Range("D3").Select
    ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:="", SubAddress:= _
    Range("A1") & Range("B1")
    Range("d3").Hyperlinks(1).Follow (True)


    End Sub
    Last edited by samcdavies; 11-28-2013 at 11:59 AM. Reason: Problem solved

  4. #4
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Macro to follow dynamic hyperlinks

    Here's a simple example.
    Please Login or Register  to view this content.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Creating Dynamic HyperLinks in [WorkBooks] which are Created with a Macro
    By e4excel in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 06-01-2011, 02:22 PM
  2. Dynamic Hyperlinks
    By lordfa9 in forum Excel General
    Replies: 4
    Last Post: 06-26-2010, 10:31 PM
  3. Need to follow hyperlinks in selection
    By gregorydarmohra in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 08-22-2007, 09:37 PM
  4. How to NOT follow hyperlinks when clicked?
    By Zimpaz in forum Excel General
    Replies: 0
    Last Post: 07-05-2007, 04:51 AM
  5. Dynamic Hyperlinks
    By anar_baku in forum Excel General
    Replies: 1
    Last Post: 12-04-2006, 09:36 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1