+ Reply to Thread
Results 1 to 5 of 5

Hyperlinking cells

Hybrid View

  1. #1
    Valued Forum Contributor
    Join Date
    02-21-2010
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2007
    Posts
    502

    Hyperlinking cells

    Please have a look at the below sub. I have created 2 such subs for different sheets. One of the 2 is working fine. But for the other I get the error message in Excel that the "Reference is not valid".

    I douple checked the code and looked at the actual hyperlinks that are created (by moving the cursor over the author with the hyperlink). Everything looks OK.

    Does anybody know why I get this error message in Excel?

    Sub Macro1()
    
    Dim LastRow As Long
    Dim i As Long
    
    'Make hyperlink from Authors on sheet J-Journals to sheet J-Affiliation
            
        Sheets("J-Journals").Select
        LastRow = Sheets("J-Journals").Range("A" & Rows.Count).End(xlUp).Row
        
        For i = 2 To LastRow
            With Worksheets("J-Journals")
                .Hyperlinks.Add Anchor:=.Range("A" & i), Address:="", SubAddress:="J-Affiliation!A" & i
            End With
        Next i
        
    End Sub
    Last edited by dschmitt; 04-13-2010 at 01:20 AM.

  2. #2
    Registered User
    Join Date
    04-09-2010
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    33

    Re: Hyperlinking cells

    You are creating a hyerlink to a cell in a sheet named "J-Affiliation", and if you don't have that sheet in your workbook then you'd get that error message.

    And you forgot to add a apostrophe ( ' ) to J-Affiliation.

            With Worksheets("J-Journals")
                .Hyperlinks.Add Anchor:=.Range("A" & i), Address:="", SubAddress:="'J-Affiliation'!A" & i
            End With
    Last edited by vshankaa; 04-13-2010 at 12:36 AM. Reason: Fixed the code...

  3. #3
    Valued Forum Contributor
    Join Date
    02-21-2010
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2007
    Posts
    502

    Re: Hyperlinking cells

    indeed it was the missing apostrophe that caused the problem. I had them missing in both of my subs.

    Strange that it worked in one but not in the other. I added the apostrophe to both subs.

    Thanks.

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Hyperlinking cells

    Quote Originally Posted by dschmitt View Post
    Strange that it worked in one but not in the other. I added the apostrophe to both subs.
    The apostrophe would technically only be required as and when the sheet name warranted it - if the sheet was say "JJournals" you wouldn't need it whereas the use of hyphen in "J-Journals" necessitates it.

    It's generally a good idea to always encase sheet names within apostrophes warranted or not, if not necessary XL will discard accordingly.

  5. #5
    Valued Forum Contributor
    Join Date
    02-21-2010
    Location
    Tokyo, Japan
    MS-Off Ver
    Excel 2007
    Posts
    502

    Re: Hyperlinking cells

    I see. Thanks for the additional information.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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