Share via

Activate hyperlinks in Excel 2010 spreadsheet

Anonymous
2014-12-24T14:48:43+00:00

Is there a way to select and activate all the hyperlinks in a given column on an Excel spreadsheet? When I double click them, nothing happens , but if I leave the field and then re-select it, the hyperlink goes to the pdf file well.  Is there any way to get the links to be active without selecting and unselecting each one? I tried the format painter and it changes the color of the link to blue but doesn't make it go to the form.

Thanks for the help!!

Ken K. - 2191

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2014-12-29T14:07:07+00:00

When you export the Excel from Access, I believe your so called "hyperlink" is just a text, and then it turned to hyperlink when you click on it, you can use VBA to add back the hyperlink

Sub Macro1()

    convtCol = "A"

    For i = 1 To ActiveSheet.Range(convtCol & Rows.Count).End(xlUp).Row

        ActiveSheet.Hyperlinks.Add Anchor:=Range(convtCol & i), Address:=Range(convtCol & i).Value, TextToDisplay:=Range(convtCol & i).Value

    Next i

End Sub

Was this answer helpful?

0 comments No comments

4 additional answers

Sort by: Most helpful
  1. Anonymous
    2015-01-02T13:29:00+00:00

    Worked perfectly!!  Thanks again for all of the help!!!

    Happy 2015!

    Ken K. - 2191

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2014-12-29T14:21:34+00:00

    Thanks for the help!  I haven't done much at all with VBA, but I'm looking forward to trying it!!

    Have a great day!

    Ken K. - 2191

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2014-12-29T13:02:49+00:00

    Hi Nayana

    Thanks for getting back to me so quickly!!  I exported an Access 2010 file to Excel and the Excel file includes a field that contains hyperlinks to all of our forms in PDF format.  If I single click on the cell that contains the pdf file name, nothing happens, but when I double click the cell with the name of the pdf form and then move to another cell when I return to the cell that was double clicked, the link has turned blue and is active.  I just wanted to see if anyone knew a way to activate the links without actually going into each cell and double clicking it.

    Thanks for the help!!  Happy 2015!!!!

    Ken K. - 2191

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2014-12-25T09:22:26+00:00

    Hi Ken,

    Thank you for posting in Microsoft Excel Community.

    To help you better, we need few details about the issue.

    1. Could you provide us the exact steps on how is hyperlink applied to the columns in the Excel file.
    2. Does each cell is hyperlinked to different file?
    3. Does the issue occurs with specific file or with all the files?

    Provide us the detailed information about the issue which will help us to analyze and assist you in better way.

    Thank you.

    Was this answer helpful?

    0 comments No comments