+ Reply to Thread
Results 1 to 3 of 3

VBA code with shape hyperlinks

Hybrid View

  1. #1
    Registered User
    Join Date
    02-25-2013
    Location
    England
    MS-Off Ver
    2010
    Posts
    27

    VBA code with shape hyperlinks

    Hi, I'm using the following code so that when i click on a hyperlink the linked cell always appears in the top left corner of the sheet:

    Private Sub Workbook_SheetFollowHyperlink(ByVal Sh As Object, ByVal Target As Hyperlink)

    Application.Goto Range(Target.SubAddress), True

    End Sub


    This works fine when i create a hyperlink on a cell but when I hyperlink a shape it doesn't work. If someone could show me how to edit the code so clicking hyperlinked shapes takes me to the destination cell with it being in the top left corner it would be much appreciated!

  2. #2
    Forum Contributor
    Join Date
    12-14-2013
    Location
    Tilburg, Nederland
    MS-Off Ver
    Excel 2010
    Posts
    256

    Re: VBA code with shape hyperlinks

    If you have a shape on your sheet you can asign a macro to that shape:
    Sub Pan2Destination()
    '
    ' Pan to destinated cell
    '
        Dim rTarget As Range
        Set rTarget = Range("C14") 'Destination cell
        'pan
        ActiveWindow.ScrollColumn = rTarget.Column
        ActiveWindow.ScrollRow = rTarget.Row
        
        rTarget.Select 'If cell needs to be selected.
        
    End Sub

  3. #3
    Registered User
    Join Date
    02-25-2013
    Location
    England
    MS-Off Ver
    2010
    Posts
    27

    Re: VBA code with shape hyperlinks

    Thats perfect, thank you!

+ 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. Automatically bringing a Shape into a Cell Using Shape Code
    By dineshtendulkar in forum Excel Programming / VBA / Macros
    Replies: 14
    Last Post: 12-16-2016, 02:25 PM
  2. VBA code to set PICTURE shape attribute other than .name
    By mchilapur in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-13-2015, 10:48 AM
  3. [SOLVED] Excel Shape Rotation with VBA Code
    By savetrees in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-06-2014, 12:11 PM
  4. Finding selected shape through code
    By DeyAgahi in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-08-2013, 01:14 AM
  5. Replies: 1
    Last Post: 04-29-2013, 05:25 PM
  6. Code that disables the box when a shape is highlighted
    By hawkinsr86 in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 11-08-2012, 11:11 AM
  7. Tom Ogilvy, your code about locating a specified shape in VBA
    By lvcha.gouqizi in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 10-29-2005, 01:05 PM

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