Editing multiple address book entries

I'm trying to update the "Company" field with the same value on dozens of Address Book entries at the same time. Having no luck. Anyone know how to update these all at once?

I am attempting to do the exact same thing - did you ever find a resolution to this problem?

Similar Messages

  • Multiple address books and/or Editing multiple address book entries

    Two questions from a neophyte to Address Book:
    1) Is there any way to make a "bulk change" to multiple entries in an address book (e.g. Add the text "Bob's friend" to the notes section of all the contacts in a selected group, or add the note "family" to a selected set of contacts?
    Perhaps there is a way to use Automator for this? or AppleScript?
    2) Is there a way to create multiple address books (short of creating multiple user accounts and logging in and out) to separate, for example business contacts from personal ones? Or perhaps is there a way to add a field to a template that allows one to categorize a contact as personal, business, school, retail, Sharon's friend, etc?
    Please lend me your ideas!

    Welcome to the discussions, Rangely.
    1) Yes, certainly, Applescript is ideal for this. See below for a simple sample. You can see which features of AB are accessible by using Script Editor to open AB's dictionary.
    2) Well, you could, but AB assumes its database is in ~/Library/Application Support/AddressBook, so you could have several parallel AB folders and swap them around as needed - but you can't do it from inside AB. It is much simpler to use the feature that suits the job - groups of contacts. As well as simplicity this has the advantage that details of someone who is business, school and Sharon's friend need only be stored once, as a contact can be in multiple groups.
    AK
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">--Skeleton AB Script
    --AK Mar 2007
    tell application "Address Book"
    repeat with Who in every person of group "Cousins"
    if note of Who exists then
    set note of Who to "Bob's Friend"
    end if
    end repeat
    end tell</pre>

  • Multiple Address Book Entries

    Hi
    When I add a new contact into my address book on my MacBook Pro iCloud adds 20 - 30 copies of it onto the Contacts app on my iPhone!
    Can anyone help me diagnose the problem please?
    Thanks
    David

    Marc Charbonneau wrote:
    > Our CIO wants a few address book entries that if chosen, will all
    > send to the same account.
    >
    > Seems easy enough but I haven't found a way, without creating a new
    > account that has some Forward or Delegate rule.
    >
    > Is there a nicer way to do it without having another real GW account
    > created and using Rules?
    >
    > I was kind of hoping to just create an External User that simply
    > points to the one account but it complains that that e-mail address
    > already exists.
    Why not using nick names ? The only downside is gw7 and earlier
    nicknames don't show up in the address book. GW8 does show the
    nicknames in the address book.
    Cheers,
    Edward

  • Multiple Address Book Entries that all send to the same GW account ?

    Our CIO wants a few address book entries that if chosen, will all send to
    the same account.
    Seems easy enough but I haven't found a way, without creating a new account
    that has some Forward or Delegate rule.
    Is there a nicer way to do it without having another real GW account created
    and using Rules?
    I was kind of hoping to just create an External User that simply points to
    the one account but it complains that that e-mail address already exists.
    Thanks
    Marc

    Marc Charbonneau wrote:
    > Our CIO wants a few address book entries that if chosen, will all
    > send to the same account.
    >
    > Seems easy enough but I haven't found a way, without creating a new
    > account that has some Forward or Delegate rule.
    >
    > Is there a nicer way to do it without having another real GW account
    > created and using Rules?
    >
    > I was kind of hoping to just create an External User that simply
    > points to the one account but it complains that that e-mail address
    > already exists.
    Why not using nick names ? The only downside is gw7 and earlier
    nicknames don't show up in the address book. GW8 does show the
    nicknames in the address book.
    Cheers,
    Edward

  • Multiple Address Book entries from iPhone

    When I add a single contact using iPhone (3GS, Ver 4.1) as it syncs to MobileMe, anywhere from 1 to 9 additional copies of the exact same contact card are created. Of course they’re propagated throughout my various Macs and iPad, as well as MobileMe.
    This does not happen when adding a contact to the iPad or any of the 4 Macs I’ve got synced to MobileMe to keep my calendar and address books up to date.
    Does anyone else have this issue, and if so, what’s the fix?
    Thanks in advance for any thoughts or suggestions.

    Yes ... I am experiencing the same issue. Seems no matter how I adjust the iPad preferences, I continue to get multiple entires in my address book.
    I do not get multiple entries in my macBook or my iPhone.
    Bill Siegrist
    [email protected]

  • Can't edit/see Address Book entries after adding contact image

    I added a photo to one of the contacts in Address Book and then all the card info for all contacts disappeared. I still see the names in the "name" list, but I cannot add a new one, edit any of them or do anything. I added the photo from iPhoto and then it seemed to die. Any tips on how to remedy, or at least wipe clean and start over? I thankfully only had three contacts in there (new computer) but I suppose I won't attempt to add any photos in the future. I just need to restart the application somehow and I don't know how to do that. Mac help menu didn't seem to address this at all.
    Thanks for any help.
    Mac Book Pro Mac OS X (10.4.8)

    Any chance your BlackBerry connected to an external BES, through your employer?
    Or is your device on a personal BIS account?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Batch edit Address Book entries

    Does anyone know of a way to change a number of address book entries at the same time?
    Say, for example, You move offices. Now you need to change the work address for 150 people... how would you go about doing that?

    Applescript.
    Here for example is one that changes a load of email addresses. You would use something similar for changing postal addresses.
    AK
    click here to open this script in your editor<pre style="font-family: 'Monaco', 'Courier New', Courier, monospace; overflow:auto; color: #222; background: #DDD; padding: 0.2em; font-size: 10px; width:400px">tell application "Address Book"
    (* Change Domain Name of emails in Address Book *)
    (* AK Aug 2005 *)
    set OldPart to "xyz" --<<<<< change here
    set NewPart to "tuv" --<<<<< change here
    set {OldDelim, text item delimiters} to {text item delimiters, "@" & OldPart & "."}
    set TheList to every person
    repeat with One in TheList
    set MailList to every email of One
    repeat with OneMail in MailList
    set Bits to text items of ((value of OneMail) as text)
    if (count of Bits) > 1 then
    set NewValue to item 1 of Bits & "@" & NewPart & "." & item 2 of Bits
    display dialog ((value of OneMail) as text) & return & NewValue
    -- set value of OneMail to NewValue
    end if
    end repeat
    end repeat
    set text item delimiters to OldDelim
    end tell</pre>

  • Multiplication of address book entries

    I have 2611 address book entries. I have this pristine file backed up, so I can go back to it. However, every time i restore my address book, it balloons up to over 19,000 entries, and slows down the processor in the meantime. I thought it was being caused by Now Contact still being on my computer, so I uninstalled it, but it still happens. It's not a sync issue, I believe, because I have turned off syncing and it still happens. I've tried putting the original addressbook on (2611 entries) and replacing the MobileMe info with it, and it still balloons up, whether syncing is on or off. This is really crazy. Does anyone have any idea why this might be happening, or how I might fix it? Thank you.

    You can export your contacts to CSV (comma separated value) format and pull that into Numbers or Excel, then export it back. Use the first part of this program (it's a converter for GMail) to do the CSV step.
    Matt

  • How do i remove my photo from my Address Book entry?

    two questions: first, how do i remove my photo from my entry in Address Book? i should be able to click "Edit", select my photo and hit the Delete key and be done, but no - hitting the Delete key does nothing except make the photo blink.
    second, i just posted a comment on a web page that i've never been to before, on a site that i've never been to before, and my photo appeared on the web page next to my comment. very creepy. anybody know why this is and how i make it stop? does it have something to do with my Address Book entry?
    update: i've consulted Address Book's help and it tells me to select the card then go Card -> Clear custom image, but when i do, that menu item is grayed out.
    further update: i've worked around the problem by taking a screen shot of a blank white area of a webpage and making that my photo...but i shouldn't have to do that and would still like to know how one actually deletes one's photo from Address Book. Address Book's help indicates that i'll find such photos in Library/Images/People, but there's no such directory in any of my Library folders. Address Book's help is not being very helpful today.
    tia...

    there is actually no way to completely delete an image for you address book entry. you can only change it to something else as you did.
    as for the image on that website, most likely it pulled your photo from your webpage on some site like My Space, Facebook etc. do you have a page like that? some sites will tap directly into your webpage and pull your pic from it.

  • PLEASE HELP!!!!  My Address Book Entries Keep Disappearing

    I work on contract for multiple companies and have 6 different email accounts. Until today, I only had 1 profile in my address book that was marked with my main email address. Today I went to add my name and the corresponding email into Address book, and then my email and ical froze and I had to Force Quit. All Address book entries were gone. I reloaded my address book, went back to ical to view the invitation and AGAIN!!! all address book entries were gone. It appears that I can't set up "my info" with different email addresses. I would be ever so grateful if someone might have a solution.
    Many Thanks for any ideas....
    ibook G4   Mac OS X (10.4.8)  

    I recommend that you book a Genius session at an Apple Store. It sounds like your iMac or iPhone has a corrupted Contacts function and it will keep generating blank contacts.
    If you can open Contacts on the iMac then create a new group (file menu), drag your genuine contacts to that group then File/Export the group with Export vCard. You can use this to recover the contacts later.
    BTW - best not to post your iMac serial number and UUID online.

  • HT2500 delete address book entries

    How do you delete address book entries?

    Welcome to Apple Support Communities.
    With Address Book open, select the entry to be deleted in the Name (middle) column by clicking on it.
    Now select Edit, Delete Card from the top menubar.
    The option to delete a card does not appear unless a card is selected first.

  • Address Book entries unusable in Outlook

    Hello all,
    I have updated iTunes, iPhone and Outlook to the most current software versions.
    Here is my problem. Whenever I add or update an existing contact on my iPhone and then sync it to Outlook on my PC the address book entry (email) for that contact becomes unusable. If you try to edit or delete the address book entry you get the message "an invalid ENTRYID was passed in". If you try to use the address book entry to send an email it fails because it can't resolve the address book entry to an email address. This only happens with contacts sync'ed from the iPhone to Outlook. Even if I create the entry in Outlook, but edit it on the iPhone, like adding a picture to the contact, the next time it syncs to Outlook the address book entry for that contact then becomes unusable. I can repeat this problem over and over on my PC with my iPhone and on my wifes PC with her iPhone. I opened a ticket with Apple, but that went where I expected it to go which was nowhere. Googling shows that many others are having the same or a similiar problem. Any ideas on a permanent fix ? Is this a known bug ?
    Thanks,
    Duke

    While Apple has never said anything official, my observations point to a problem in 1.1.3 where an entry created on the phone that did not have a first and last name did not create a proper index entry in the Outlook contact database. The problem (for me) was fixed in 1.1.4, but entries made in 1.1.3 were still corrupt. You can fix the broken records in the contact database by exporting the PST file, then importing it (in Outlook).

  • Address Book entries deleted... then reappear!

    When I connect my address book to MobileMe, I am finding certain rogue address book entries that I want to change or delete, but they never retain the changes for very long.
    I delete or edit, sync to MobileMe righ away, and see the change correctly on both MobileMe, iPhone, and computer. Then, the next day or two, it randomly shows up again with the old data.
    I even tried resetting the sync data with the address book, to no avail.
    Any suggestions?

    I would try to connect to mobile me on your "master" device. The one that is most correct. Reset all mobile me services, and have your computer replace the contents on mobile me. Then I would disable and re-enable each of the other devices. That way it completely clears out mobile me, and then sets up each device again.

  • Address book entries erased - need help

    Does anyone know how to recover erased Address book entries? I've found that Contact info inside a card can be easily erased/typed over and there does not appear to be an easy way to "undo" as the Edit/Undo command doesnt seem to work in this application. The downside of using Mobile Me is that my devices are getting wiped out quicker than I can copy down the info and save it.

    c9ky6qk3 wrote:
    Thanks for the suggestions VK. Turned out I had some core operating system files that had been corrupted,
    how did you find that out exactly?
    Genius said I had to re-install.
    did you try what I said? i suggest you do that before reinstalling. that's quick and easy and won't hurt anything. if the problem is with your AB database file then reinstalling won't help but what I said will. and since you have time machine you should not reinstall in any case. you should just do a full system restore from TM from before the problem started.

  • How to: Multiple Address books in Leopard?

    Hi guys Is it possible to have multiple Address books in Leopard without having to switch users?
    I need one for personal use and one for business use and if it's not possible with apple address book Is there a osx address book application that would allow me to do that?
    Thanks

    It is, however, possible to label entries as either business or personal and then create two groups. Place all business labeled entries in one group and all personal labeled entries in the other group.

Maybe you are looking for

  • GRIR Maintenence  and Clearing for non group currency PO

    Hi Experts I have an issue where I have a PO in say USD where group currency for company is Aus Dollar (AUD) At Month end, for whatever reason there is a GR/IR balance and we maintain it with MR11 but MR11 balances the difference in group currency (A

  • XML document question?

    Is an XML document only "information" on a song and not the song itself? I burned my "iTunes Music Library" to a CD thinking I saved all my songs. Can it be transformed into a usable file or did I just save "info"? Can anyone help a PC 1st grader? in

  • How to hyperlink in HTML to a specific slide in Captivate?

    Is it possible to hyperlink from an HTML page to open a SWF file on a particular slide? How? Thanks!

  • Help in cloudspace database

    sir i want to use cloudspace database where can i found it (free version) and also its driver and how can i use it with java application without odbc bridge plz help me by example of code this and also links where i can download this (free) thanks

  • CS6 trial with CS3 installed

    Can I download a trial CS6 if I already own and have CS3 installed?  Can I order and download CS6 by the month if I Have CS3 installed?