+ Reply to Thread
Results 1 to 3 of 3

How do I export email addresses from Excel to Outlook?

  1. #1
    JasonLi
    Guest

    How do I export email addresses from Excel to Outlook?

    I'd like to create an Outlook email distribution list using email addresses
    that are listed in one column of an Excel spreadsheet. What is the process?

    Thanks
    JasonLi

  2. #2
    Registered User
    Join Date
    05-10-2006
    Posts
    53
    You could use this vba function which will produce a list of email address from a selection, and then dump it into B2, from which you can simply copy over to outlook.

    Sub emailList()

    Dim emailList As String
    Dim emailRng As Range

    Set emailRng = Application.Selection

    For Each c In emailRng.Cells
    emailList = c.Value & ";" & emailList
    Next

    Range("B2").Select
    ActiveCell.Value = emailList

    End Sub

  3. #3
    JasonLi
    Guest

    Re: How do I export email addresses from Excel to Outlook?



    "KellTainer" wrote:

    >
    > You could use this vba function which will produce a list of email
    > address from a selection, and then dump it into B2, from which you can
    > simply copy over to outlook.
    >
    > Sub emailList()
    >
    > Dim emailList As String
    > Dim emailRng As Range
    >
    > Set emailRng = Application.Selection
    >
    > For Each c In emailRng.Cells
    > emailList = c.Value & ";" & emailList
    > Next
    >
    > Range("B2").Select
    > ActiveCell.Value = emailList
    >
    > End Sub
    >
    >
    > --
    > KellTainer
    > ------------------------------------------------------------------------
    > KellTainer's Profile: http://www.excelforum.com/member.php...o&userid=34322
    > View this thread: http://www.excelforum.com/showthread...hreadid=544300
    >
    > Thanks. Not being a programmer, I'll have to defer your recommendation to one of our programmers and hope that it will work.

    Thanks again,
    JasonLi

+ 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