Results 1 to 6 of 6

Thread: Auto Worksheet index

  1. #1

    Thread Starter
    Member
    Join Date
    Mar 2005
    Location
    Australia
    Posts
    46

    Auto Worksheet index

    Hi all

    yesterday i had some help with a macro to create a list of references. I would like to take this one step further an make each name in the list a hyperlink to the worksheet. The code for the hyper link i con't seem to get it to work. Does anyone have any ideas
    VB Code:
    1. Public Sub ListWrkShts()
    2.  
    3.     Dim i As Integer
    4.     Dim x As Integer
    5.     Dim sSheet As String
    6.     Dim oWB As Workbook
    7.    
    8.     Range("B1").Value = "Worksheets List"
    9.  
    10.     x = 2
    11.     Set oWB = ActiveWorkbook
    12.     For i = 2 To oWB.Sheets.Count
    13.         oWB.Sheets(1).Cells(x, 2).Value = oWB.Sheets(i).Name
    14.         ActiveSheet.Hyperlinks.Add Anchor:=oWB.Sheets(1).Cells(x, 2),   Address:="", SubAddress:= _
    15.         oWB.Sheets(i).Name, TextToDisplay:= _
    16.         oWB.Sheets(i).Name
    17.         x = x + 1
    18.     Next
    19.     Set oWB = Nothing
    20.    
    21.     Sort
    22.     Range("A1").Select
    23.    
    24. End Sub

    Can anyone help

  2. #2
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Auto Worksheet index

    I fixed it for you
    VB Code:
    1. Public Sub ListWrkShts()
    2.  
    3.     Dim i As Integer
    4.     Dim x As Integer
    5.     Dim sSheet As String
    6.     Dim oWB As Workbook
    7.    
    8.     Range("B1").Value = "Worksheets List"
    9.  
    10.     x = 2
    11.     Set oWB = ActiveWorkbook
    12.     For i = 2 To oWB.Sheets.Count
    13.         oWB.Sheets(1).Cells(x, 2).Value = oWB.Sheets(i).Name
    14.         Workbooks(1).Sheets(1).Hyperlinks.Add oWB.Sheets(1).Cells(x, 2), "http://www.vbforums.com", oWB.Sheets(i).Name, oWB.Sheets(i).Name
    15.         x = x + 1
    16.     Next
    17.     Set oWB = Nothing
    18.    
    19.     Sort
    20.     Range("A1").Select
    21.    
    22. End Sub
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  3. #3

    Thread Starter
    Member
    Join Date
    Mar 2005
    Location
    Australia
    Posts
    46

    Re: Auto Worksheet index

    Yes Very good RobDog, You playing tricks on me all the links open up the vbforum. i've tried playing around with it but still can't get it to work like i want it to.

  4. #4
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Auto Worksheet index

    Change the "http://www.vbforums.com" parameter to whereever you need (cell, worksheet, website, etc).
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  5. #5

    Thread Starter
    Member
    Join Date
    Mar 2005
    Location
    Australia
    Posts
    46

    Re: Auto Worksheet index

    This is what i tried
    VB Code:
    1. Workbooks(1).Sheets(1).Hyperlinks.Add oWB.Sheets(1).Cells(x, 2), "oWB.Sheets(i).Name", oWB.Sheets(i).Name, oWB.Sheets(i).Name

    And when i click on a link it comes up with "can not open the specified file".

    I'm not sure what to do next????


    What i want to do is create a list of worksheet names (which i can do) turn them into hyperlinks to the worksheet they resprent and then sort them into abc order.

  6. #6
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Auto Worksheet index

    Do it without the double quotes around the object.
    VB Code:
    1. Workbooks(1).Sheets(1).Hyperlinks.Add oWB.Sheets(1).Cells(x, 2), oWB.Sheets(i).Name, oWB.Sheets(i).Name, oWB.Sheets(i).Name
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

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



Click Here to Expand Forum to Full Width