Exporting Address Book Contacts

I would like to export my address book contacts into an excel spreadsheet in order to THEN import them into Filemaker. Can anyone give me a simple step by step?
Thanks!

Go to http://homepage.mac.com/kenferry/software.html --and scroll down to AddressBookToCSV. I just tested it on 10.5.2, and it will export your address book to CSV format in spreadsheet. Follow the instruction in the dialog box.

Similar Messages

  • How to Export Address Book contacts as CSV file for Gmail?

    Hi
    I wish to export some of my Address Book contacts towards Gmail (which i use through the web interface for now) but I don't want to export vcards as i don't trust big brother Google with all the other data (snail mail, phone numbers, birthdays, etc).
    I have tried to do the export through Address Book but found no CSV export option.
    I've searched the forum for an answer, but to no avail. Some other (paying) websites claim to offer solutions but the "pay before you see" deters me from using them.
    Any tip on how to do this would be greatly appreciated. Scripts and software also welcome, if shareware/freeware.
    Cheers,
    FMN

    Thanks for your answer, but gmail's help specifically states one can import contacts in CSV format and i was looking for a simple batch solution.
    Here is a link to the relevant gmail page (might be in French - am not a "Froguette" for nothing ;)) about importing:
    <http://mail.google.com/support/bin/topic.py?topic=28647>
    and the one about importing addresses as CSV files:
    <http://mail.google.com/support/bin/answer.py?hl=fr&answer=12119>)
    So my question still stands.
    FMN
    Message was edited by: FroguetteMiNote - wrong link corrected
    Message was edited by: FroguetteMiNote

  • How to export address book contacts to numbers sheet

    I am looking for a way to export my address book contacts from a specific group to a Numbers spreadsheet. Can someone help me with that? I would think it should be a simple task, but I can't seem to find any help for that kind of an operation.
    Thanks in advance for any help.

    select the contacts
    copy,
    switch to Numbers
    paste
    You should also make sure, in System Preferences, that Numbers is allowed to access Contact information in the "Security & Privacy" panel:

  • Deleted Notes in Exported Address Book Contact

    Help, deleted notes when I exported a couple of Vcards. Anyway to get them back? Haven't set up anykind of backup on machine.

    That's been my frustration as well. I wanted to pdf all my contact info to carry with me on a USB key in case I needed something from the Note section. The iPhone truncates the note section to about the first 2,500 characters. So if you have contacts with long Notes you've got a problem. I thought a had a work-around, but pdf'ing the Contacts didn't work because it won't print more than 1 page per contact and prints the partial Note in two narrow columns, truncating the rest of the Note. I can't believe more people haven't complained about this. Before migrating to Address Book (I used Outlook), I made extensive use of the Note section.

  • How do I use AppleScript to export Address Book contacts?

    Here's what I want to do. I want to execute a series of AppleScript commands which will automatically export every contact I have in my Address Book to a vCards.vcf file (which will be in my Dropbox folder). The reason I want to do this is so I don't have to remember to manually export the contacts every time I change one.
    What are the AppleScript commands I need to run?

    quick&dirty, but it works 8-)
    -- hubionmac.com 06.02.2011
    -- quick&dirty script for exporting contacts as single vCards
    --exisiting vCards will not be overwritten by the script, instead new files will 
    --get an index like "John Smith 1.vcf"
    set doThese to getitem_2process(true)
    tell application "Address Book"
    set destination_path to choose folder with prompt "Destination folder for export:"
    repeat with doThis in doThese
    if first name of doThis is missing value then
    set firstname to ""
    else
    set firstname to first name of doThis
    end if
    if last name of doThis is missing value then
    set lastname to ""
    else
    set lastname to last name of doThis
    end if
    if (lastname & firstname) as text = "" then
    set namestring to "nobody.vcf"
    else
    set namestring to (first name of doThis & " " & last name of doThis & ".vcf") as text
    end if
    set namestring to my checknamewith_pdfsuffix(namestring, destination_path, false)
    my writeToFile((destination_path as text) & namestring as text, (get vcard of doThis), false)
    end repeat
    my display_message(((count of doThese) & " contact(s) exported") as text, 3)
    end tell
    on writeToFile(MacFilePathTxt, txt, add2eof)
    --lastedit 18.01.2011
    if add2eof is false then
    try
    do shell script "rm " & quoted form of POSIX path of (MacFilePathTxt as alias)
    end try
    end if
    set RefNum to (open for access file MacFilePathTxt with write permission)
    try
    if add2eof is false then
    write txt to RefNum
    else
    write txt to RefNum starting at ((get eof RefNum) + 1)
    end if
    close access RefNum
    return true
    on error
    close access RefNum
    return false
    end try
    end writeToFile
    to getitem_2process(askwhat)
    try
    tell application "Address Book"
    activate
    tell application "System Events"
    keystroke "0" using command down --show address-window not matter what...
    end tell
    if askwhat is true then
    set theaction to button returned of (display dialog "Process all or just selection?" buttons {"All", "Selection", "cancel"} default button {"Selection"})
    if theaction = "Selection" then
    set a to every person whose selected is true
    else
    set a to people
    end if
    else
    set a to people
    end if
    end tell
    on error msg
    error "error on getitem_2process" & return & msg
    end try
    end getitem_2process
    to checknamewith_pdfsuffix(n, D, looped)
    --check if filename exists in D
    -- so if "A File.pdf" exists it names it "A File 1.pdf","A File 2.pdf",...
    tell application "Finder"
    set thefiles to name of every item of (D as alias)
    end tell
    if thefiles contains n then
    if looped = false then
    set n to ((characters 1 through -5 of n) & " 1" & (characters -4 through -1 of n)) as text
    my checknamewith_pdfsuffix(n, D, true)
    else
    set tmp to (last word of ((characters 1 through -5 of n) as text) as integer)
    set tmpcount to (count of characters of (tmp as text)) + 5
    set tmp to tmp + 1
    set n to ((characters 1 through (-1 * tmpcount) of n) & tmp & (characters -4 through -1 of n)) as text
    my checknamewith_pdfsuffix(n, D, true)
    end if
    else
    return n
    end if
    end checknamewith_pdfsuffix
    on display_message(msgTXT, msgTimeout)
    tell application "System Events"
    set isRunning to ¬
    (count of (every process whose name is "GrowlHelperApp")) > 0
    end tell
    if isRunning = true then
    tell application "GrowlHelperApp"
    -- Make a list of all the notification types 
    -- that this script will ever send:
    set the allNotificationsList to ¬
    {"Status"}
    -- Make a list of the notifications 
    -- that will be enabled by default.      
    -- Those not enabled by default can be enabled later 
    -- in the 'Applications' tab of the growl prefpane.
    set the enabledNotificationsList to ¬
    {"Status"}
    -- Register our script with growl.
    -- You can optionally (as here) set a default icon 
    -- for this script's notifications.
    register as application ¬
    "Address Book" all notifications allNotificationsList ¬
    default notifications enabledNotificationsList ¬
    icon of application "Address Book"
    --Send a Notification...
    notify with name ¬
    "Status" title ¬
    "Status" description ¬
    msgTXT application name ¬
    "Address Book"
    return true
    end tell
    else
    activate
    display dialog msgTXT giving up after msgTimeout
    end if
    end display_message

  • How can I export Address Book contacts to csv then to xcel to create a mailing list?

    It seems to only export to Vcard. No Vcard to csv...

    Export to vCard,
    Go to this URL
    http://labs.brotherli.ch/vcfconvert/
    And select .csv as the output

  • Can I Export Address Book contacts from OSX 10.5.8 to OSX 10.4.11

    Is the information compatible between Systems and which Folders hold the details?
    Any help gratefully accepted.

    Found the Answer in another Posting! Export them as Vcards!! Works perfectly. Thanks you.

  • How do I export my Mac address book contacts from OS 10.10 to Excel

    How do I export my Mac address book contacts to an excel spreadsheet?

    Sorry, forgot to test it when I had 10.6 available.
    I don't know that they're interchangeable, but it seems the relevant files & folders are...
    For Address Book, quit AB...
    Files...
    /Users/YourUserName/Library/Preferences/com.apple.AddressBook.plist
    /Users/YourUserName/Library/Preferences/com.apple.AddressBook.abd.plist
    Folders...
    /Users/YourUserName/Library/Application Support/AddressBook/
    /Users/YourUserName/Library/Caches/com.apple.AddressBook/
    So back those up if you try replacing them, and of course Permissions may or may not need adjusting on the swap.

  • Mac OS 10.4 Address Book Contacts

    Niether the Palm Data Transfer Agent nor the MissingSync program work under Mac OS 10.4, and I do not want to pay for 10.5 when 10.6 is coming out in September.  Here is how I have found to copy all of my Address Book contacts to the Pre.  It requires you to have a gmail account.
    1) In Address Book, select all the contacts you want to export.  You can select multiple contacts by shift-click or command-clicking.  For example, to get all of your contacts click on the first one, then scroll to the last one and shift click on it.  All of your contacts will be highlighted.
    2) From the File menu, choose Export vCard..., enter of filename (or leave it as the devault "vCards"), note the directory where the vcards will be saved, and click the Save button.
    3) Go to your gmail account using your favorite browser.
    4) Click on the Contacts link (on the left side of the screen).
    5) In the upper right hand corner of the contacts box, click on Import.
    6) Browse to find the file of vCards you saved, and click on the import button.
    At this point all of your contacts will be loaded into gmail.  If you have already sync'ed your Pre with gmail, then your contacts should automatically update.  Otherwise, follow the instructions for sync'ing with gmail.
    While this procedure will copy all of your data over to the phone, it is not a real sync in that if you make changes either on the phone or in Address Book, you will have to manually push the changes over.  I'll probably get MissingSync when I upgrade to a more recent version of OS X, but it would be nice if the Pre came with this functionality built-in...
    Post relates to: Pre p100eww (Sprint)

    Does anyone have a solution for converting Palm Contacts?  I'm happy to buy software to make this happen.  I have 2500+ contacts and use many of the fields (and would like to keep them).  I am on a mac and use a droid phone (Samsung Intercept).  Sprint says that they can convert the contacts, but that they will then only be on my phone.  I need to be able to update on my computer and have that sync with my phone.
    thank you!

  • Trying to link Address Book Contacts with Outlook 2011 - iSync??

    Hi There,
    Would be grateful for some assistance.
    I've got all my contacts and other things in iCloud - wonderful!
    I've managed to get all my contacts from iCloud to show up in Address book.
    I want to sync my address book contacts in Outlook 2011 - after three days of trying I'm still stuck.
    I've checked the Syncing set up in Outlook, that appears to be correct.
    I've checked addressbook, and other than having two folders one entitles iCloud (which has everything I need in it) and one entitled On my Mac, which has a couple of testers in it but nothing else, everything else seems fine.
    I've checked that iCloud is synching into the iCloud folder in Address Book by putting some stuff on my iPhone and seeing it got pushed from the iCloud to my MacBook - all working fine there.
    I have read lots of forum posts and keep seeing references to iSync, and how its on all Mac's but then I see people saying that its not on with Lion - I'm running Lion, and I can't find iSync...so this would seem to be true.
    Can anyone tell me how I might achieve this sync process - I would much rather be using an integrated programme like Outlook...any thoughts

    Enthusiast: I just got back from the Apple Store. This is the solution they suggested and seems to work. We got rid of iCloud contacts. We just set up Yahoo account in the "mail, contacts, calendars" of the iPhone. Under the "contacts" section we have the "default Account" set to Yahoo. When any additions/delete/mods happen then it is updated on Yahoo.
    On the MacBook we deleted the "on My Computer" and deleted "iCloud" and then added the Yahoo account for synching. This is basically used as a secondary backup for the yahoo contact and used if using the computer. It is not necessary to use the computer for any of this.
    I've been having lots of problems with Yahoo contacts. I had previously pulled in facebook contacts. This was NOT a good idea. I cleaned up my contacts, exported them out to CSV. Scrubbed some more. Imported them to a new yahoo account. Then deleted all contacts from my main Yahoo, permanently deleting them. Then imported my contacts. I did lose all my "lists" settings. That was a small price to pay.
    Now iPhone, iPad and MacBook address book and Yahoo are all in sync.
    I was shown at the store is to refresh the Yahoo webpage (CTRL R) and then refresh the contacts on the iPhone. There is a slight delay in update. iCloud is faster at it. But its best to avoid iCloud if you are using Yahoo contacts. Also avoid Facebook contacts. If you really want to use the Facebook feature, I would do it on a different account and then bring in the contacts that you want through an import.
    I was having problems with Yahoo contacts and it might be that it was being flaky or they were experiencing problems ... because all of a sudden it started working again. I've seen similar problems with Yahoo Calendar.

  • Importing AOL Address Book/Contact List into Apple Mail Program

    This is probably an old and already answered queation, but it has just come up for me. Does anyone know how to export the AOL Address Book/Contact List so it can be imported into the Apple Mail Program? I would like not to have to reinter all the address when I drop AOL.
    @ GHz Intel Core Duo   Mac OS X (10.4.4)   No DVD

    The AOL Service Assistant works fine for transfering the AOL contacts to the Apple Address Book. However, I was unable to get the AOL favorites to tansfer to Safari. It keeps hanging up with the rotating basketball. Any further suggestions?
    466 MHz PowerPC G4   Mac OS X (10.3.9)   No DVD

  • Export Address Book into Outlook

    How do you export Address Book to use in Outlook?

    You connect the iPhone to iTunes, select Outlook as to where you want to sync contacts, and calendar if you want, and then sync. The only thing you need to do is make sure if the Outlook on the computer is completely empty, put in a unique contact in Outlook to force the merge option to come up. See this support document http://support.apple.com/kb/HT1296

  • "Sync Address Book Contacts" option missing all groups

    I had a problem with multiple copies of contacts on my iPhone so I deselected the "Sync Address Book Contacts" box in iTunes before synching. The popup said that all contacts would be removed from the iPhone, and I clicked to proceed. When the sync was complete, I verified that all contacts had been removed from my iPhone (they were).
    Then I reselected the "Sync Address Book Contacts" but noticed that all 15 of the groups from my MacBook that normally appear in the box with the All Contacts/Selected Groups button were missing. I opened Address Book and they were all there.
    I did a backup of Address Book and then deleted all of my contacts on my MacBook. I quit and restarted my MacBook and then imported my Address Book backup before connecting my iPhone and trying to sync the contacts again, but again, none of the groups appeared in the window and after proceeding with the sync anyway, not a single contact went to the iPhone. I've tried it by both selecting and deselecting the Contacts box under the "Replace information on this iPhone".
    - I connected an iPod touch that didn't have any contact info to the MacBook and, as before, the groups from my address book did not show up and after synching, none of the contacts were installed on the iPod Touch, leaving me to believe that it is something iTunes related except that all of my calendars and music etc. sync without a problem.
    - I've got the latest iTunes (10.1) and Snow Leopard s/w updates.
    Any ideas?

    Exported addresses from Address Book to desktop and then deleted all addresses from Address Book.
    Deleted file AddressBook-v22.ab** from Library>Application Support>AddressBook.
    Exited Address Book and iTunes, restarted Address Book and imported addresses from desktop.
    Restarted iTunes and all of the groups were visible in the "Synch Address Book Contacts" window.

  • Why have my Address Book contacts disappeared after uploading to iCloud?

    I am using my MacBook Pro w/OSX Lion.
    After having many, many problems with contacts, calendars and bookmarks in MobileMe, migrating to iCloud, encountering a huge mess of duplicates and even completely missing contacts I decided to start over.  So I disabled the iCloud account on all Macs and IOS devices.  I then ensured all contacts, calendars and bookmarks were deleted from the MacBook Pro.  I then used the Address Book export I'd made just prior to the migration from Mobile Me to iCloud and imported this onto my MacBook Pro.  I've completely gone though the Address Book and removed or merged duplicates and cleaned up all contacts with detail.  I backed up my Address Book again at this point.  I then logged into iCloud.com using my original Apple User ID (NOT the MobileMe/me.com account which I'm going to vacate) and ensured that there were no contacts in the cloud and I deselected the default calendars here as well.  My intention was/is to begin by starting small and deal only with the MacBook Pro Address Book and iCloud Contacts.  So after I confirmed there is no data in the cloud I go into the MacBook Pro System Preferences > iCloud > Account Details ensuring I was signed out of the me.com user and entered my original Apple ID I've had since I started using iTunes many years back.  I quit the browser and the Address Book and verified the non me.com user was saved under the System Preferences.  I then selected Contacts under these iCloud System Preferences and I was asked If I wanted to merge my contacts with those in the cloud.  Because there were no contacts in the cloud I selected yes.  The spinning indicator indicated that the upload was occurring.  Now, there are no contacts in the cloud and the Address Book contacts are missing.  Thinking that my doing the Address Book backup may have removed all the data from the Address Book, I deselected Contacts in the iCloud System Preferences, reimported the backup into Address Book that I'd just done, confirmed the contacts I just imported appear in Address Book and I reselect Contacts in the iCloud System Preferences and again I get the spinning indicator.  Again, there are no Contacts in the cloud and the contacts are missing from Address Book.
    What the heck am I doing wrong?  I've simplified my original attempt with iCloud by concentrating my efforts to just contacts AND I'm only using the MacBook and the iCloud cloud and I've still got problems.  I thought this approach would narrow down where the issue lies and allow me to monitor the process more easily but I seem to be worse off than before I'd tried to resolve the initial migration problems because now I have no contacts.
    I'm new to Macs so if you have a solution, please help and please give specifics because I'm still learning the structure and don't understand a lot of the acronyms and jargon.
    Thanx

    If you have a back up file, I'd try turning off iCloud contact syncing on all macs from system preferences > iCloud –
    DONE
    as well as any secondary accounts from system preferences > mail, contacts and calendars –
    DONE (this was confusing but I figured out that you meant System Preferences > Mail, Contacts & Calendars which is what you said in lowercase.  For some reason without the capital letters I didn't clue in that Mail, Contacts and Calendars was an icon option under the System preferences and so I overlooked it multiple times. I see your use of "secondary account" which I note used also as a term in the User Tip link you referred me to view.  Although, I still don't understand what this 'secondary' account is, I'm not interested in any secondary accounts because I've got my hands full with just iCloud for now. I did delete all accounts under the Mail, Contacts & Calendars).
    If you have any iOS devices I'd do the same on those as well. –
    DONE (not even introducing other Macs or IOS devices to the equation until I get the iCloud and MacBook syncing contacts correctly)
    I'd log into iCloud.com and check my Address Book was empty and empty it if necessary –
    DONE (it was empty already)
    and then delete all contacts from every Address Book on every device
             DONE
    Then I'd turn Address Book syncing back on –
    DONE (This assuming that by ‘turn back on’ you mean System Preferences > iCloud and check marking the box next to Contacts)
    and import my contacts from the backup file –
    DONE (This assuming that by ‘import my contacts’ you mean importing the previously exported Address Book back up file back into the Address Book. I see contacts listed in the Address Book when I did this.)
    No syncing seems to happen at this point?
    you might also take a look at this User Tip, to ensure you understand the differences between the different accounts in Address Book before adding the contacts back.
             I did read this but understand is probably not an accurate term for my interpretation of what I read.  I get that On My Mac will not sync with what is in the cloud and iCloud will sync with the cloud.  In Address Book under the single head red ribbon I see neither account heading that is mentioned.  I also was not asked at the time of import to select which ‘account’ I’d like the contacts setup under.
    A) If there is no indication as to what Address Book account the contacts fall under, how does on find this out? 
    User Tips states
    Your Address Book when synced with iCloud will have more than one account.
         My assumption is that I'm not synced with iCloud if I don't see either account option listed. I also would think that if I'm not synced and thus don't have more than one account then perhaps the All Contacts default to an On My Mac account but don't reflect an account heading of 'On My Mac’ as seen on the screen shot of the User Tips example.
    Furthermore, User Tips also states
    Default Account
    Your 'default'account is set in address book preferences > general (the option is only displayed if you have more than one account).
             It would seem relevant to list which account your defaulted to even if you do not have more than one account because elsewise how are you supposed to know which account it is setup under?
    B)  How do you change which ‘account’ your contacts are setup under if they are under the wrong account?
             Assuming again that my contacts are ‘On My Mac’, then how do I move them to the ‘iCloud’ account of which is not listed?
    C)  Will any of this be affected by groups? 
    The five listings under All Contacts are groups that I set up as a sort of invitation list (so Christmas cards is one I’d probably setup this time of year).  Although this question is secondary I would like to confirm that my interpretation of groups is accurate.  I understand groups to be a sort of tagging of selected contacts from All Contacts but that the contacts in these groups are not duplicates to those in All Contacts. Is this correct?  I ask because the User Tips states
    To quickly duplicate a contact, drag it to your desktop, navigate to 'Groups', select the account you wish to duplicate to, double click the contact on your desktop.
                When reading this tip, I interpret that dragging and dropping contacts from All Contacts into a group would be similar to what is suggested in this tip which would indeed ‘duplicate’ the contact.  I did drag and drop when I setup my groups so I’m concerned I duplicated the contacts in Address Book.  I do not see two copies of the same contact under All Contacts though.
    By the way, don't take it personally –
    I don't, I have reading difficulties galore and am happy to accommodate if I can.  I hope this is better. Helping you helps me if you're not struggling to read when thinking about the solution.
    Thanx

  • Export Address Book Features

    I'm trying to simplify managing Address Book contacts for exporting to an e-mail marketing application (Campaign Monitor). The problem is that when a contact has multiple e-mail addresses they will be displayed as a separate column in a CSV file but Campaign Monitor will only import one address per contact so we have to manually create 2 contacts if there are 2 e-mail addresses.
    Is there a way to export from Adddress Book so that each e-mail address is a separate contact? Probably not but if anyone has any advice on how to manage this better would be great. I have about 3,000 names in Address Book and am adding 1 - 3 new ones every day. Syncing with Campaign Monitor is time consuming.
    Thanks

    No. You would have to create a second contact card for each email address with only one email address per card.

Maybe you are looking for