Results 1 to 2 of 2

Thread: Most efficient program for finding out associated email address

  1. #1
    Join Date
    Mar 2011
    Posts
    1

    Most efficient program for finding out associated email address

    The company that I work with recently purchased a list of company names, addresses, city, state, zip, and phone numbers of potentially interested clients for our services. I have an excel spreadsheet that looks like this:



    And I am responsible for finding the associated email address for that clinic.
    This seems like a simple task, but I have 33,000 of them to find in one week. If anyone knows the simplest way to go about this, whether it is a program or a macro I could make, I would greatly appreciate any help.

  2. #2
    Join Date
    Dec 2007
    Posts
    996

    Re: Most efficient program for finding out associated email address

    You could try to copy and paste the following codes that is given below in the macro window (alt F11) for finding out email address and check whether it works out for you or not:

    Code:
    Sub query()
    x = Cells(Rows.Count, 1).End(xlUp).Row
    For a = 1 To x
    Cells(a, 3) = "www.website.com/searchabc123etc=" & Cells(a, 1) & "+" & Cells(a, 2)
    Next a
    End Sub
    After that, you just need to run the macro and it will make custom URL's. Hope that helps.

Similar Threads

  1. Replies: 3
    Last Post: 04-12-2011, 08:20 AM
  2. Finding the IP address of another host in the network
    By Benjhonson in forum Networking & Security
    Replies: 5
    Last Post: 03-12-2010, 07:47 AM
  3. Tomtom XL not finding the correct address
    By richiepask in forum Portable Devices
    Replies: 7
    Last Post: 16-08-2010, 05:07 PM
  4. Finding The IP Address In Gmail
    By Rohit Kasle (RK) in forum Tips & Tweaks
    Replies: 1
    Last Post: 05-02-2010, 04:32 PM
  5. Finding IP address
    By GaryK in forum Technology & Internet
    Replies: 2
    Last Post: 10-10-2008, 06:54 PM

Tags for this Thread

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
  •  
Page generated in 1,713,496,652.03590 seconds with 17 queries