How to turn hundreds of text URLs in Excel into clickable hyperlinks?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







11















How do I turn a column of urls into hyperlinks, so that users can click on the url in a cell and have it open in a browser?



I pasted 100 urls and each went into its own cell. When I double-click in the cell and then leave it, Excel turns the text blue and makes a link out of it. I don't want to double-click a hundred times, but still want to format all the cells into links.










share|improve this question















migrated from stackoverflow.com Jun 27 '10 at 19:14


This question came from our site for professional and enthusiast programmers.














  • 1





    Totally as an aside, but something to be aware of if hyperlinks don't work as expected: Office uses an odd Microsoft Office Existence Discovery workflow (involving Internet Explorer even if that is not your default browser) when you click such URL.

    – Arjan
    Jun 27 '10 at 19:36


















11















How do I turn a column of urls into hyperlinks, so that users can click on the url in a cell and have it open in a browser?



I pasted 100 urls and each went into its own cell. When I double-click in the cell and then leave it, Excel turns the text blue and makes a link out of it. I don't want to double-click a hundred times, but still want to format all the cells into links.










share|improve this question















migrated from stackoverflow.com Jun 27 '10 at 19:14


This question came from our site for professional and enthusiast programmers.














  • 1





    Totally as an aside, but something to be aware of if hyperlinks don't work as expected: Office uses an odd Microsoft Office Existence Discovery workflow (involving Internet Explorer even if that is not your default browser) when you click such URL.

    – Arjan
    Jun 27 '10 at 19:36














11












11








11


7






How do I turn a column of urls into hyperlinks, so that users can click on the url in a cell and have it open in a browser?



I pasted 100 urls and each went into its own cell. When I double-click in the cell and then leave it, Excel turns the text blue and makes a link out of it. I don't want to double-click a hundred times, but still want to format all the cells into links.










share|improve this question
















How do I turn a column of urls into hyperlinks, so that users can click on the url in a cell and have it open in a browser?



I pasted 100 urls and each went into its own cell. When I double-click in the cell and then leave it, Excel turns the text blue and makes a link out of it. I don't want to double-click a hundred times, but still want to format all the cells into links.







microsoft-excel-2007 macros






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 2 '10 at 23:16









Sathyajith Bhat

53.1k29157253




53.1k29157253










asked Jun 25 '10 at 14:59









kacalapykacalapy

3453617




3453617




migrated from stackoverflow.com Jun 27 '10 at 19:14


This question came from our site for professional and enthusiast programmers.









migrated from stackoverflow.com Jun 27 '10 at 19:14


This question came from our site for professional and enthusiast programmers.










  • 1





    Totally as an aside, but something to be aware of if hyperlinks don't work as expected: Office uses an odd Microsoft Office Existence Discovery workflow (involving Internet Explorer even if that is not your default browser) when you click such URL.

    – Arjan
    Jun 27 '10 at 19:36














  • 1





    Totally as an aside, but something to be aware of if hyperlinks don't work as expected: Office uses an odd Microsoft Office Existence Discovery workflow (involving Internet Explorer even if that is not your default browser) when you click such URL.

    – Arjan
    Jun 27 '10 at 19:36








1




1





Totally as an aside, but something to be aware of if hyperlinks don't work as expected: Office uses an odd Microsoft Office Existence Discovery workflow (involving Internet Explorer even if that is not your default browser) when you click such URL.

– Arjan
Jun 27 '10 at 19:36





Totally as an aside, but something to be aware of if hyperlinks don't work as expected: Office uses an odd Microsoft Office Existence Discovery workflow (involving Internet Explorer even if that is not your default browser) when you click such URL.

– Arjan
Jun 27 '10 at 19:36










7 Answers
7






active

oldest

votes


















11














The function in Excel for doing a hyperlink is =Hyperlink("http://www.techonthenet.com","Tech on the Net") where "http://www.techonthenet.com" is the internet address and "Tech on the Net" is the title that appears in the Excel cell.



Thus when you are writing the urls into the Excel file just wrap this function around each url. If you don't want to come up with a dynamic name you can always put the url as the name too.



If you aren't inserting the values programmatically then this site mentions using the HYPERLINK worksheet function. Though a even better reference is this which walks you through how to add a macro to excel and they supply the code for the macro. Thus when after you add this macro you can select the column of urls and run the macro and it converts the whole column into hyperlinks






share|improve this answer



















  • 1





    i pasted 100 urls and each went into its own cell. this is good but they are plain text. when i dblcick into the cell and then leave it excel tirns the text blue and makes a link out of it. i dont want to dbl click a hundred times and want to format all the cells into links like it is doing for me.

    – kacalapy
    Jun 25 '10 at 15:11











  • I added another way for you to do this. I assumed you were doing it through a program you wrote somehow since you are on stackoverflow.

    – Kyra
    Jun 25 '10 at 15:33











  • Any chance just applying some different formatting might do the trick too? I kind of doubt that Excel will really insert the hyperlink formula when it does its auto-magic. (I don't have Excel here, but pressing Ctrl-1 for the cell properties might show something useful?)

    – Arjan
    Jun 27 '10 at 20:00



















11














From here: Convert URLs to Clickable Links In Excel



Public Sub Convert_To_Hyperlinks()
Dim Cell As Range
For Each Cell In Intersect(Selection, ActiveSheet.UsedRange)
If Cell <> "" Then
ActiveSheet.Hyperlinks.Add Cell, Cell.Value
End If
Next
End Sub



Creating the Macro




  • Open your Excel doc

  • Open the macro editor by pressing ALT+F11.

  • In the Tools Menu, left-click View and select Project Explorer.

  • Look for the folder called ‘Modules’, right-click it, select ‘Insert’, then select ‘Module’.

  • Paste the code into the project module you have selected.

  • Press ALT+F11 to return to your Excel workbook (or click on its icon in the Windows taskbar).







Run the Macro




  • To execute the macro, select the unclickable text links you want to convert to clickable hyperlinks.

  • Press ALT+F8 to open the Macro selector window and click on the macro you just created.

  • Your Links are now all Clickable! Saving you time and data entry fatigue :)







share|improve this answer


























  • Bonus points for clear macro instructions. If you have to do this kind of thing on a regular basis, it helps to save the macro somewhere centrally so you can load it into any workbook you need. You can also create a shortcut-key for the macro within the workbook.

    – NateJ
    Jul 25 '17 at 16:30











  • A great addition to your ribbon in Excel. Highlight fields, click button, Boom! Hyperlinked cells.

    – Jay Killeen
    Jul 28 '17 at 5:05



















2














Hard to believe there isn't an optional setting to tell Excel to treat URLs as live links. After all Outlook automatically does this. But then again - this is a Microsoft product, sigh.



I have a column of links in Excel. I selected the column and pasted it into an email to myself. When I got the mail (Excel column still selected) I pasted the live links back into the column. Done!



Alternatively, you could save the email as a draft and open the saved draft again. There's no need to actually send and receive the email.






share|improve this answer

































    1














    The easy way to do this is simply save the Excel file as an HTML page. Then reopen the HTML page in Excel and the links will be clikable.



    UPDATE

    Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work






    share|improve this answer


























    • Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work.

      – Richard
      Jul 25 '13 at 13:43











    • I have added your comment to your answer. You are always welcome to update your answers

      – Shekhar
      Jul 25 '13 at 14:21



















    0














    Kyra's answer points you here which essentialy gives you this, and was a good direction. Allows you to do a large selection as you request and will convert them all.



    Sub addHypers()

    For Each cell In Intersect(Selection, ActiveSheet.UsedRange)
    If cell <> "" Then
    ActiveSheet.Hyperlinks.Add cell, "http://" + cell.Value
    End If
    Next cell
    End Sub

    Sub removeHypers()
    Intersect(Selection, ActiveSheet.UsedRange).Hyperlinks.Delete
    End Sub





    share|improve this answer































      0














      See how to convert url text to clickable hyperlink in Excel for easy how-to instructions.



      In Excel, click on the column you want to convert to clickable hyperlinks.

      Follow the first option: Convert URL text to clickable hyperlink with VBA code



      Go through the steps and after you've pressed F5, close the Microsoft Visual Basic application to return to your Excel file. Your URLs will now be clickable!






      share|improve this answer

































        -1














        If you don't want to make a macro and as long as you don't mind an additional column, then just create a new column alongside your column of URLs.



        In the new column type in the formula =HYPERLINK(A1) (replacing A1 with whatever cell you are interested in). Then copy the formula down the rest of the entries.






        share|improve this answer



















        • 1





          This suggestion has already been made by the accepted answer. Could you edit your answer to explain how this is different?

          – Burgi
          Apr 19 '16 at 10:05












        Your Answer








        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "3"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f157414%2fhow-to-turn-hundreds-of-text-urls-in-excel-into-clickable-hyperlinks%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        7 Answers
        7






        active

        oldest

        votes








        7 Answers
        7






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        11














        The function in Excel for doing a hyperlink is =Hyperlink("http://www.techonthenet.com","Tech on the Net") where "http://www.techonthenet.com" is the internet address and "Tech on the Net" is the title that appears in the Excel cell.



        Thus when you are writing the urls into the Excel file just wrap this function around each url. If you don't want to come up with a dynamic name you can always put the url as the name too.



        If you aren't inserting the values programmatically then this site mentions using the HYPERLINK worksheet function. Though a even better reference is this which walks you through how to add a macro to excel and they supply the code for the macro. Thus when after you add this macro you can select the column of urls and run the macro and it converts the whole column into hyperlinks






        share|improve this answer



















        • 1





          i pasted 100 urls and each went into its own cell. this is good but they are plain text. when i dblcick into the cell and then leave it excel tirns the text blue and makes a link out of it. i dont want to dbl click a hundred times and want to format all the cells into links like it is doing for me.

          – kacalapy
          Jun 25 '10 at 15:11











        • I added another way for you to do this. I assumed you were doing it through a program you wrote somehow since you are on stackoverflow.

          – Kyra
          Jun 25 '10 at 15:33











        • Any chance just applying some different formatting might do the trick too? I kind of doubt that Excel will really insert the hyperlink formula when it does its auto-magic. (I don't have Excel here, but pressing Ctrl-1 for the cell properties might show something useful?)

          – Arjan
          Jun 27 '10 at 20:00
















        11














        The function in Excel for doing a hyperlink is =Hyperlink("http://www.techonthenet.com","Tech on the Net") where "http://www.techonthenet.com" is the internet address and "Tech on the Net" is the title that appears in the Excel cell.



        Thus when you are writing the urls into the Excel file just wrap this function around each url. If you don't want to come up with a dynamic name you can always put the url as the name too.



        If you aren't inserting the values programmatically then this site mentions using the HYPERLINK worksheet function. Though a even better reference is this which walks you through how to add a macro to excel and they supply the code for the macro. Thus when after you add this macro you can select the column of urls and run the macro and it converts the whole column into hyperlinks






        share|improve this answer



















        • 1





          i pasted 100 urls and each went into its own cell. this is good but they are plain text. when i dblcick into the cell and then leave it excel tirns the text blue and makes a link out of it. i dont want to dbl click a hundred times and want to format all the cells into links like it is doing for me.

          – kacalapy
          Jun 25 '10 at 15:11











        • I added another way for you to do this. I assumed you were doing it through a program you wrote somehow since you are on stackoverflow.

          – Kyra
          Jun 25 '10 at 15:33











        • Any chance just applying some different formatting might do the trick too? I kind of doubt that Excel will really insert the hyperlink formula when it does its auto-magic. (I don't have Excel here, but pressing Ctrl-1 for the cell properties might show something useful?)

          – Arjan
          Jun 27 '10 at 20:00














        11












        11








        11







        The function in Excel for doing a hyperlink is =Hyperlink("http://www.techonthenet.com","Tech on the Net") where "http://www.techonthenet.com" is the internet address and "Tech on the Net" is the title that appears in the Excel cell.



        Thus when you are writing the urls into the Excel file just wrap this function around each url. If you don't want to come up with a dynamic name you can always put the url as the name too.



        If you aren't inserting the values programmatically then this site mentions using the HYPERLINK worksheet function. Though a even better reference is this which walks you through how to add a macro to excel and they supply the code for the macro. Thus when after you add this macro you can select the column of urls and run the macro and it converts the whole column into hyperlinks






        share|improve this answer













        The function in Excel for doing a hyperlink is =Hyperlink("http://www.techonthenet.com","Tech on the Net") where "http://www.techonthenet.com" is the internet address and "Tech on the Net" is the title that appears in the Excel cell.



        Thus when you are writing the urls into the Excel file just wrap this function around each url. If you don't want to come up with a dynamic name you can always put the url as the name too.



        If you aren't inserting the values programmatically then this site mentions using the HYPERLINK worksheet function. Though a even better reference is this which walks you through how to add a macro to excel and they supply the code for the macro. Thus when after you add this macro you can select the column of urls and run the macro and it converts the whole column into hyperlinks







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jun 25 '10 at 15:03









        KyraKyra

        22826




        22826








        • 1





          i pasted 100 urls and each went into its own cell. this is good but they are plain text. when i dblcick into the cell and then leave it excel tirns the text blue and makes a link out of it. i dont want to dbl click a hundred times and want to format all the cells into links like it is doing for me.

          – kacalapy
          Jun 25 '10 at 15:11











        • I added another way for you to do this. I assumed you were doing it through a program you wrote somehow since you are on stackoverflow.

          – Kyra
          Jun 25 '10 at 15:33











        • Any chance just applying some different formatting might do the trick too? I kind of doubt that Excel will really insert the hyperlink formula when it does its auto-magic. (I don't have Excel here, but pressing Ctrl-1 for the cell properties might show something useful?)

          – Arjan
          Jun 27 '10 at 20:00














        • 1





          i pasted 100 urls and each went into its own cell. this is good but they are plain text. when i dblcick into the cell and then leave it excel tirns the text blue and makes a link out of it. i dont want to dbl click a hundred times and want to format all the cells into links like it is doing for me.

          – kacalapy
          Jun 25 '10 at 15:11











        • I added another way for you to do this. I assumed you were doing it through a program you wrote somehow since you are on stackoverflow.

          – Kyra
          Jun 25 '10 at 15:33











        • Any chance just applying some different formatting might do the trick too? I kind of doubt that Excel will really insert the hyperlink formula when it does its auto-magic. (I don't have Excel here, but pressing Ctrl-1 for the cell properties might show something useful?)

          – Arjan
          Jun 27 '10 at 20:00








        1




        1





        i pasted 100 urls and each went into its own cell. this is good but they are plain text. when i dblcick into the cell and then leave it excel tirns the text blue and makes a link out of it. i dont want to dbl click a hundred times and want to format all the cells into links like it is doing for me.

        – kacalapy
        Jun 25 '10 at 15:11





        i pasted 100 urls and each went into its own cell. this is good but they are plain text. when i dblcick into the cell and then leave it excel tirns the text blue and makes a link out of it. i dont want to dbl click a hundred times and want to format all the cells into links like it is doing for me.

        – kacalapy
        Jun 25 '10 at 15:11













        I added another way for you to do this. I assumed you were doing it through a program you wrote somehow since you are on stackoverflow.

        – Kyra
        Jun 25 '10 at 15:33





        I added another way for you to do this. I assumed you were doing it through a program you wrote somehow since you are on stackoverflow.

        – Kyra
        Jun 25 '10 at 15:33













        Any chance just applying some different formatting might do the trick too? I kind of doubt that Excel will really insert the hyperlink formula when it does its auto-magic. (I don't have Excel here, but pressing Ctrl-1 for the cell properties might show something useful?)

        – Arjan
        Jun 27 '10 at 20:00





        Any chance just applying some different formatting might do the trick too? I kind of doubt that Excel will really insert the hyperlink formula when it does its auto-magic. (I don't have Excel here, but pressing Ctrl-1 for the cell properties might show something useful?)

        – Arjan
        Jun 27 '10 at 20:00













        11














        From here: Convert URLs to Clickable Links In Excel



        Public Sub Convert_To_Hyperlinks()
        Dim Cell As Range
        For Each Cell In Intersect(Selection, ActiveSheet.UsedRange)
        If Cell <> "" Then
        ActiveSheet.Hyperlinks.Add Cell, Cell.Value
        End If
        Next
        End Sub



        Creating the Macro




        • Open your Excel doc

        • Open the macro editor by pressing ALT+F11.

        • In the Tools Menu, left-click View and select Project Explorer.

        • Look for the folder called ‘Modules’, right-click it, select ‘Insert’, then select ‘Module’.

        • Paste the code into the project module you have selected.

        • Press ALT+F11 to return to your Excel workbook (or click on its icon in the Windows taskbar).







        Run the Macro




        • To execute the macro, select the unclickable text links you want to convert to clickable hyperlinks.

        • Press ALT+F8 to open the Macro selector window and click on the macro you just created.

        • Your Links are now all Clickable! Saving you time and data entry fatigue :)







        share|improve this answer


























        • Bonus points for clear macro instructions. If you have to do this kind of thing on a regular basis, it helps to save the macro somewhere centrally so you can load it into any workbook you need. You can also create a shortcut-key for the macro within the workbook.

          – NateJ
          Jul 25 '17 at 16:30











        • A great addition to your ribbon in Excel. Highlight fields, click button, Boom! Hyperlinked cells.

          – Jay Killeen
          Jul 28 '17 at 5:05
















        11














        From here: Convert URLs to Clickable Links In Excel



        Public Sub Convert_To_Hyperlinks()
        Dim Cell As Range
        For Each Cell In Intersect(Selection, ActiveSheet.UsedRange)
        If Cell <> "" Then
        ActiveSheet.Hyperlinks.Add Cell, Cell.Value
        End If
        Next
        End Sub



        Creating the Macro




        • Open your Excel doc

        • Open the macro editor by pressing ALT+F11.

        • In the Tools Menu, left-click View and select Project Explorer.

        • Look for the folder called ‘Modules’, right-click it, select ‘Insert’, then select ‘Module’.

        • Paste the code into the project module you have selected.

        • Press ALT+F11 to return to your Excel workbook (or click on its icon in the Windows taskbar).







        Run the Macro




        • To execute the macro, select the unclickable text links you want to convert to clickable hyperlinks.

        • Press ALT+F8 to open the Macro selector window and click on the macro you just created.

        • Your Links are now all Clickable! Saving you time and data entry fatigue :)







        share|improve this answer


























        • Bonus points for clear macro instructions. If you have to do this kind of thing on a regular basis, it helps to save the macro somewhere centrally so you can load it into any workbook you need. You can also create a shortcut-key for the macro within the workbook.

          – NateJ
          Jul 25 '17 at 16:30











        • A great addition to your ribbon in Excel. Highlight fields, click button, Boom! Hyperlinked cells.

          – Jay Killeen
          Jul 28 '17 at 5:05














        11












        11








        11







        From here: Convert URLs to Clickable Links In Excel



        Public Sub Convert_To_Hyperlinks()
        Dim Cell As Range
        For Each Cell In Intersect(Selection, ActiveSheet.UsedRange)
        If Cell <> "" Then
        ActiveSheet.Hyperlinks.Add Cell, Cell.Value
        End If
        Next
        End Sub



        Creating the Macro




        • Open your Excel doc

        • Open the macro editor by pressing ALT+F11.

        • In the Tools Menu, left-click View and select Project Explorer.

        • Look for the folder called ‘Modules’, right-click it, select ‘Insert’, then select ‘Module’.

        • Paste the code into the project module you have selected.

        • Press ALT+F11 to return to your Excel workbook (or click on its icon in the Windows taskbar).







        Run the Macro




        • To execute the macro, select the unclickable text links you want to convert to clickable hyperlinks.

        • Press ALT+F8 to open the Macro selector window and click on the macro you just created.

        • Your Links are now all Clickable! Saving you time and data entry fatigue :)







        share|improve this answer















        From here: Convert URLs to Clickable Links In Excel



        Public Sub Convert_To_Hyperlinks()
        Dim Cell As Range
        For Each Cell In Intersect(Selection, ActiveSheet.UsedRange)
        If Cell <> "" Then
        ActiveSheet.Hyperlinks.Add Cell, Cell.Value
        End If
        Next
        End Sub



        Creating the Macro




        • Open your Excel doc

        • Open the macro editor by pressing ALT+F11.

        • In the Tools Menu, left-click View and select Project Explorer.

        • Look for the folder called ‘Modules’, right-click it, select ‘Insert’, then select ‘Module’.

        • Paste the code into the project module you have selected.

        • Press ALT+F11 to return to your Excel workbook (or click on its icon in the Windows taskbar).







        Run the Macro




        • To execute the macro, select the unclickable text links you want to convert to clickable hyperlinks.

        • Press ALT+F8 to open the Macro selector window and click on the macro you just created.

        • Your Links are now all Clickable! Saving you time and data entry fatigue :)








        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jul 24 '15 at 10:02









        nixda

        21.1k1179135




        21.1k1179135










        answered Jan 6 '12 at 13:07









        Niall FlynnNiall Flynn

        11113




        11113













        • Bonus points for clear macro instructions. If you have to do this kind of thing on a regular basis, it helps to save the macro somewhere centrally so you can load it into any workbook you need. You can also create a shortcut-key for the macro within the workbook.

          – NateJ
          Jul 25 '17 at 16:30











        • A great addition to your ribbon in Excel. Highlight fields, click button, Boom! Hyperlinked cells.

          – Jay Killeen
          Jul 28 '17 at 5:05



















        • Bonus points for clear macro instructions. If you have to do this kind of thing on a regular basis, it helps to save the macro somewhere centrally so you can load it into any workbook you need. You can also create a shortcut-key for the macro within the workbook.

          – NateJ
          Jul 25 '17 at 16:30











        • A great addition to your ribbon in Excel. Highlight fields, click button, Boom! Hyperlinked cells.

          – Jay Killeen
          Jul 28 '17 at 5:05

















        Bonus points for clear macro instructions. If you have to do this kind of thing on a regular basis, it helps to save the macro somewhere centrally so you can load it into any workbook you need. You can also create a shortcut-key for the macro within the workbook.

        – NateJ
        Jul 25 '17 at 16:30





        Bonus points for clear macro instructions. If you have to do this kind of thing on a regular basis, it helps to save the macro somewhere centrally so you can load it into any workbook you need. You can also create a shortcut-key for the macro within the workbook.

        – NateJ
        Jul 25 '17 at 16:30













        A great addition to your ribbon in Excel. Highlight fields, click button, Boom! Hyperlinked cells.

        – Jay Killeen
        Jul 28 '17 at 5:05





        A great addition to your ribbon in Excel. Highlight fields, click button, Boom! Hyperlinked cells.

        – Jay Killeen
        Jul 28 '17 at 5:05











        2














        Hard to believe there isn't an optional setting to tell Excel to treat URLs as live links. After all Outlook automatically does this. But then again - this is a Microsoft product, sigh.



        I have a column of links in Excel. I selected the column and pasted it into an email to myself. When I got the mail (Excel column still selected) I pasted the live links back into the column. Done!



        Alternatively, you could save the email as a draft and open the saved draft again. There's no need to actually send and receive the email.






        share|improve this answer






























          2














          Hard to believe there isn't an optional setting to tell Excel to treat URLs as live links. After all Outlook automatically does this. But then again - this is a Microsoft product, sigh.



          I have a column of links in Excel. I selected the column and pasted it into an email to myself. When I got the mail (Excel column still selected) I pasted the live links back into the column. Done!



          Alternatively, you could save the email as a draft and open the saved draft again. There's no need to actually send and receive the email.






          share|improve this answer




























            2












            2








            2







            Hard to believe there isn't an optional setting to tell Excel to treat URLs as live links. After all Outlook automatically does this. But then again - this is a Microsoft product, sigh.



            I have a column of links in Excel. I selected the column and pasted it into an email to myself. When I got the mail (Excel column still selected) I pasted the live links back into the column. Done!



            Alternatively, you could save the email as a draft and open the saved draft again. There's no need to actually send and receive the email.






            share|improve this answer















            Hard to believe there isn't an optional setting to tell Excel to treat URLs as live links. After all Outlook automatically does this. But then again - this is a Microsoft product, sigh.



            I have a column of links in Excel. I selected the column and pasted it into an email to myself. When I got the mail (Excel column still selected) I pasted the live links back into the column. Done!



            Alternatively, you could save the email as a draft and open the saved draft again. There's no need to actually send and receive the email.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jul 7 '14 at 19:41









            Sirex

            9,75843252




            9,75843252










            answered Nov 14 '12 at 11:48









            RVLRVL

            211




            211























                1














                The easy way to do this is simply save the Excel file as an HTML page. Then reopen the HTML page in Excel and the links will be clikable.



                UPDATE

                Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work






                share|improve this answer


























                • Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work.

                  – Richard
                  Jul 25 '13 at 13:43











                • I have added your comment to your answer. You are always welcome to update your answers

                  – Shekhar
                  Jul 25 '13 at 14:21
















                1














                The easy way to do this is simply save the Excel file as an HTML page. Then reopen the HTML page in Excel and the links will be clikable.



                UPDATE

                Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work






                share|improve this answer


























                • Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work.

                  – Richard
                  Jul 25 '13 at 13:43











                • I have added your comment to your answer. You are always welcome to update your answers

                  – Shekhar
                  Jul 25 '13 at 14:21














                1












                1








                1







                The easy way to do this is simply save the Excel file as an HTML page. Then reopen the HTML page in Excel and the links will be clikable.



                UPDATE

                Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work






                share|improve this answer















                The easy way to do this is simply save the Excel file as an HTML page. Then reopen the HTML page in Excel and the links will be clikable.



                UPDATE

                Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Jul 25 '13 at 14:18









                Shekhar

                4,52032945




                4,52032945










                answered Jul 25 '13 at 13:36









                RichardRichard

                111




                111













                • Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work.

                  – Richard
                  Jul 25 '13 at 13:43











                • I have added your comment to your answer. You are always welcome to update your answers

                  – Shekhar
                  Jul 25 '13 at 14:21



















                • Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work.

                  – Richard
                  Jul 25 '13 at 13:43











                • I have added your comment to your answer. You are always welcome to update your answers

                  – Shekhar
                  Jul 25 '13 at 14:21

















                Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work.

                – Richard
                Jul 25 '13 at 13:43





                Sometimes this does not work. But this seems to always work. Right click selected column URLs are located in. Then Click Hyperlink, then click "Place in this Document" This seems to always work.

                – Richard
                Jul 25 '13 at 13:43













                I have added your comment to your answer. You are always welcome to update your answers

                – Shekhar
                Jul 25 '13 at 14:21





                I have added your comment to your answer. You are always welcome to update your answers

                – Shekhar
                Jul 25 '13 at 14:21











                0














                Kyra's answer points you here which essentialy gives you this, and was a good direction. Allows you to do a large selection as you request and will convert them all.



                Sub addHypers()

                For Each cell In Intersect(Selection, ActiveSheet.UsedRange)
                If cell <> "" Then
                ActiveSheet.Hyperlinks.Add cell, "http://" + cell.Value
                End If
                Next cell
                End Sub

                Sub removeHypers()
                Intersect(Selection, ActiveSheet.UsedRange).Hyperlinks.Delete
                End Sub





                share|improve this answer




























                  0














                  Kyra's answer points you here which essentialy gives you this, and was a good direction. Allows you to do a large selection as you request and will convert them all.



                  Sub addHypers()

                  For Each cell In Intersect(Selection, ActiveSheet.UsedRange)
                  If cell <> "" Then
                  ActiveSheet.Hyperlinks.Add cell, "http://" + cell.Value
                  End If
                  Next cell
                  End Sub

                  Sub removeHypers()
                  Intersect(Selection, ActiveSheet.UsedRange).Hyperlinks.Delete
                  End Sub





                  share|improve this answer


























                    0












                    0








                    0







                    Kyra's answer points you here which essentialy gives you this, and was a good direction. Allows you to do a large selection as you request and will convert them all.



                    Sub addHypers()

                    For Each cell In Intersect(Selection, ActiveSheet.UsedRange)
                    If cell <> "" Then
                    ActiveSheet.Hyperlinks.Add cell, "http://" + cell.Value
                    End If
                    Next cell
                    End Sub

                    Sub removeHypers()
                    Intersect(Selection, ActiveSheet.UsedRange).Hyperlinks.Delete
                    End Sub





                    share|improve this answer













                    Kyra's answer points you here which essentialy gives you this, and was a good direction. Allows you to do a large selection as you request and will convert them all.



                    Sub addHypers()

                    For Each cell In Intersect(Selection, ActiveSheet.UsedRange)
                    If cell <> "" Then
                    ActiveSheet.Hyperlinks.Add cell, "http://" + cell.Value
                    End If
                    Next cell
                    End Sub

                    Sub removeHypers()
                    Intersect(Selection, ActiveSheet.UsedRange).Hyperlinks.Delete
                    End Sub






                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 3 '10 at 3:53









                    datatoodatatoo

                    2,8471428




                    2,8471428























                        0














                        See how to convert url text to clickable hyperlink in Excel for easy how-to instructions.



                        In Excel, click on the column you want to convert to clickable hyperlinks.

                        Follow the first option: Convert URL text to clickable hyperlink with VBA code



                        Go through the steps and after you've pressed F5, close the Microsoft Visual Basic application to return to your Excel file. Your URLs will now be clickable!






                        share|improve this answer






























                          0














                          See how to convert url text to clickable hyperlink in Excel for easy how-to instructions.



                          In Excel, click on the column you want to convert to clickable hyperlinks.

                          Follow the first option: Convert URL text to clickable hyperlink with VBA code



                          Go through the steps and after you've pressed F5, close the Microsoft Visual Basic application to return to your Excel file. Your URLs will now be clickable!






                          share|improve this answer




























                            0












                            0








                            0







                            See how to convert url text to clickable hyperlink in Excel for easy how-to instructions.



                            In Excel, click on the column you want to convert to clickable hyperlinks.

                            Follow the first option: Convert URL text to clickable hyperlink with VBA code



                            Go through the steps and after you've pressed F5, close the Microsoft Visual Basic application to return to your Excel file. Your URLs will now be clickable!






                            share|improve this answer















                            See how to convert url text to clickable hyperlink in Excel for easy how-to instructions.



                            In Excel, click on the column you want to convert to clickable hyperlinks.

                            Follow the first option: Convert URL text to clickable hyperlink with VBA code



                            Go through the steps and after you've pressed F5, close the Microsoft Visual Basic application to return to your Excel file. Your URLs will now be clickable!







                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Jan 12 '14 at 20:27









                            Jawa

                            3,15982435




                            3,15982435










                            answered Jan 12 '14 at 19:24









                            DeenaDeena

                            1




                            1























                                -1














                                If you don't want to make a macro and as long as you don't mind an additional column, then just create a new column alongside your column of URLs.



                                In the new column type in the formula =HYPERLINK(A1) (replacing A1 with whatever cell you are interested in). Then copy the formula down the rest of the entries.






                                share|improve this answer



















                                • 1





                                  This suggestion has already been made by the accepted answer. Could you edit your answer to explain how this is different?

                                  – Burgi
                                  Apr 19 '16 at 10:05
















                                -1














                                If you don't want to make a macro and as long as you don't mind an additional column, then just create a new column alongside your column of URLs.



                                In the new column type in the formula =HYPERLINK(A1) (replacing A1 with whatever cell you are interested in). Then copy the formula down the rest of the entries.






                                share|improve this answer



















                                • 1





                                  This suggestion has already been made by the accepted answer. Could you edit your answer to explain how this is different?

                                  – Burgi
                                  Apr 19 '16 at 10:05














                                -1












                                -1








                                -1







                                If you don't want to make a macro and as long as you don't mind an additional column, then just create a new column alongside your column of URLs.



                                In the new column type in the formula =HYPERLINK(A1) (replacing A1 with whatever cell you are interested in). Then copy the formula down the rest of the entries.






                                share|improve this answer













                                If you don't want to make a macro and as long as you don't mind an additional column, then just create a new column alongside your column of URLs.



                                In the new column type in the formula =HYPERLINK(A1) (replacing A1 with whatever cell you are interested in). Then copy the formula down the rest of the entries.







                                share|improve this answer












                                share|improve this answer



                                share|improve this answer










                                answered Apr 19 '16 at 8:24









                                UriBUriB

                                1




                                1








                                • 1





                                  This suggestion has already been made by the accepted answer. Could you edit your answer to explain how this is different?

                                  – Burgi
                                  Apr 19 '16 at 10:05














                                • 1





                                  This suggestion has already been made by the accepted answer. Could you edit your answer to explain how this is different?

                                  – Burgi
                                  Apr 19 '16 at 10:05








                                1




                                1





                                This suggestion has already been made by the accepted answer. Could you edit your answer to explain how this is different?

                                – Burgi
                                Apr 19 '16 at 10:05





                                This suggestion has already been made by the accepted answer. Could you edit your answer to explain how this is different?

                                – Burgi
                                Apr 19 '16 at 10:05


















                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Super User!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f157414%2fhow-to-turn-hundreds-of-text-urls-in-excel-into-clickable-hyperlinks%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                Список кардиналов, возведённых папой римским Каликстом III

                                Deduzione

                                Mysql.sock missing - “Can't connect to local MySQL server through socket”