Results 1 to 4 of 4

Insert Hyperlink to WorkBook in which VBA Code resides

Threaded View

  1. #1
    Valued Forum Contributor ron2k_1's Avatar
    Join Date
    09-30-2009
    Location
    Not the USA
    MS-Off Ver
    Excel 2003, 2007
    Posts
    606

    Insert Hyperlink to WorkBook in which VBA Code resides

    Hey crew,

    I have this code that saves the newly created worksheet (from Code that imports text to excel) as a new workbook:
    Private Sub SaveWS()
        Dim wb As Workbook
        If Application.Version > 11 Then
            ActiveWorkbook.Worksheets(cboRptname.Value).Copy
            Set wb = ActiveWorkbook
            wb.SaveAs Filename:="\\Server1\Folder1\Folder2\Folder3\" & BoxYrFolder.Value & "\" & BoxQtr.Value & "\Cart\" & _
                BoxMonthText.Value & "\" & cboRptname.Value & " " & cboYear.Value & cboMonth.Value & cboDay.Value & ".xls", _
                FileFormat:=xlExcel8
                 
        Else
        ActiveWorkbook.Worksheets(cboRptname.Value).Copy
            Set wb = ActiveWorkbook
            wb.SaveAs Filename:="\\Server1\Folder1\Folder2\Folder3\" & BoxYrFolder.Value & "\" & BoxQtr.Value & "\Cart\" & _
                BoxMonthText.Value & "\" & cboRptname.Value & " " & cboYear.Value & cboMonth.Value & cboDay.Value & ".xls", _
                FileFormat:=xlWorkbookNormal
        End If
    ActiveWorkbook.Close
    End Sub
    After this piece of code run (from a form), it goes back to the workbook in which the code resides and do other stuff (clears the sheet that just got converted to a brand new workbook, clears connections and querytables, etc, etc.).

    After all the above is done, I would like to go to
    Workbooks(ThisWorkbook.Name).Worksheets("Generator").Range("A7")
    And add a hyper link to the file just created and saved by the code above. And I want the text to be displayed "cboRptname.Value & " " & cboYear.Value & cboMonth.Value & cboDay.Value & ".xls"

    Can anybody help?

    EDIT: I tried the macro recorder, but I use xl07 and I want users on xl03 to use the file as well, and I'm always concerned with the way xl07 records code that it may not work on earlier versions.
    Last edited by ron2k_1; 07-01-2011 at 01:11 PM.
    Ron
    Knowledge is knowing that a tomato and pepper are fruits. Wisdom is knowing whether to put these in a fruit salad

    Kindly

    [1] Use code tags. Place "[code]" before the first line of code and "[/code"]" after the last line of code. Exclude quotation marks
    [2] Mark your post [SOLVED] if it has been answered satisfactorily by editing your original post in advanced mode.
    [3] Thank (using the little scale) those that provided useful help; its nice and its very well appreciated

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