+ Reply to Thread
Results 1 to 2 of 2

Hide hyperlink cell & replace with macros

  1. #1
    Jose
    Guest

    Hide hyperlink cell & replace with macros

    I have created an excel spreadsheet with a hyperlink in a cell. I would like
    to replace the hyperlink with a [Button] to hide the hyperlink and only show
    the i.e [GO TO] button.

    Is this possible if so what are the steps?

    Thanks you for your time.


  2. #2
    hui
    Guest

    Re: Hide hyperlink cell & replace with macros

    Sub Button1_Click()
    Call Macro1
    End Sub
    Sub Macro1()
    'I suppose you have put a hyperlink on Cell E8
    Range("E8").Select
    Selection.Hyperlinks(1).Follow NewWindow:=False, AddHistory:=True
    Application.WindowState = xlNormal
    End Sub

    "Jose" <[email protected]> wrote in message
    news:[email protected]...
    > I have created an excel spreadsheet with a hyperlink in a cell. I would

    like
    > to replace the hyperlink with a [Button] to hide the hyperlink and only

    show
    > the i.e [GO TO] button.
    >
    > Is this possible if so what are the steps?
    >
    > Thanks you for your time.
    >




+ 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