There are a number of ways this could be done - Access is NOT one I'd recommend, though that may be in part because I've not used it in a while.
A relatively simple vbscript should work. Change the paths in GetFile and OpenTextFile (2nd and 3rd lines below) so that they properly reflect the path of your source data and where you want to save the new file.
This script can also be modified to accommodate multiple addresses on one line (assuming they are separated by a delimiter of some kind).
Save the script to a .vbs file - then double-click or type the file name on the command line. I used a file name of "makecsv.vbs" but you can use "whatever.vbs"
Main Topics
Browse All Topics





by: jppintoPosted on 2009-04-17 at 09:37:02ID: 24169571
Copy and paste all of your data into an access table. Then Export the table to an text file using the Export Text Wizad and selecting the Delimiter option.
This will create a file like this:
"email1@email.com"
"email2@email.com"
"email3@email.com"
jppinto