Sort contacts by company in the address book dialog

Hi all,
When I create a new email, I click "to" to select the recipient. In the dialog box, I select my own address book (not the Exchange one), but I am not able to sort contacts by company. I only have display name and email columns. Right click does
not works.
I red this was not possible, but it seems weird that I can sort by company in the Exchange address book and not in my own AB.
Regards,
Seb.

Hi,
I can confirm that we cannot sort contacts by company in our own Address Books. As a workaround, we may use
Advanced Find beside the address book to find the people from a specific company.
Although Outlook is now a quite powerful tool, it is still not perfect. Outlook considers users' feeling very important and may make the change to make itself a more powerful and easy-to-use product.
Regards,
Melon Chen
TechNet Community Support

Similar Messages

  • How to delete an address which shows, but is not in the address book.

    Sometimes when I address a message I see three identical correct addresses and one old one that is no longer good. How can I delete all but one of the addresses? They do not appear in the person's contact info or on the address book list. Thank you, Marty

    All suggestions come from one of your address books. You have two by default in Thunderbird. The Personal and the Collected books. Find the problem addresses and fix or delete them.

  • How do I add a contact from the same company to my address book?

    How do I add a contact from the same company to my address book? I do not want to re-type all of the information. Thanks for your help.

    Any card in your address book can be duplicated. Select the card within the Name column, and use the Edit > Copy menu item followed by the Edit > Paste menu item. Then you can update the card copy and only change the name/email/phone fields as needed.

  • Apple Script to Sort through the Address Book

    Dear All,
    I am quite new to Apple and just a learner on Apple-scripts. Its been quite a task to learn.. I would require some help on a few things..
    The script will eventually use numbers to send email and get the user inputs and any yet to reach there..
    After going through lots of scripts to sort through the address book and make a clean address book, i found they are quite slow in processing takes about 20~30 Minutes to get through 2000 Contacts..
    Hence after reading posting of Mr. Koenig & Mr. Hiroto and specifically on deep copy. I have written the following code which does the following on 2000 records within 6~8Mins.
    The Script work its way through all the contact is the address List.. and creates Groups
    1. Duplicate Email Id's — List of Contacts with same email ID's including Contacts where the email Id is entered twice.. (Strange.. Address Book Issue, copy of the email Id under work & home)
    2. Duplicate Phone — List of Contacts with same Phone Numbers including Contacts where the Phone Nos is entered twice.
    3. Duplicate Name — List of Contacts with Same Names
    4. Duplicate No Name — List of Contacts without the First Name and Last Name
    it also sort the Contacts under the following Group which you can edit later with all the information's..
    1. Only Email Ids — List of Contacts with Email ID and No Phone Numbers
    2. Only Phone — List of Contacts with Phone Numbers and No Email Id's
    3. No Email or Phone — List of Contacts with No Email Id's and No Phone numbers (some half completed contacts )
    My Question to the forum is why is the following code still taking too much time..
    set onlyDupEList to every person of group theGroupEmail
    repeat with j from 1 to count of Dup_email
    set tempdata to item j of Dup_email
    if onlyDupEList does not contain {tempdata} then add tempdata to group theGroupEmail
    end repeat
    save application "Address Book"
    and the scripts slows down when the items in the list is quite large (over 800 or so )..
    Any help is appreciated and thanks in advance..
    -- the code ---
    global MsgTitle
    on run
    set MsgTitle to "Search for Duplicates in Address Book Contacts"
    display dialog ¬
    "This Script takes a while to finish" & return & "maybe 10 min or More..." & return & "Depending on the Address Book Contacts." & return & return & "Hence Allow it to run for the while" with title MsgTitle ¬
    with icon 1 ¬
    buttons {"Continue"} ¬
    giving up after 5
    set question to display dialog "Select the Duplicate Search Parameter " with icon 1 with title MsgTitle ¬
    buttons {"Contact Name", "Contacts on Phone & Email Id's", "Quit"} default button 3
    set rtnValue to button returned of question
    if rtnValue is "Quit" then
    -- tell application "Address Book" to quit
    tell me to quit
    end if
    if rtnValue is "Contact Name" then
    -- tell application "Address Book" to quit
    GetDup_byName("Duplicate Name")
    end if
    if rtnValue is "Contacts on Phone & Email Id's" then --Contacts on Phone & Email Id's
    -- tell application "Address Book" to quit
    Get_dup()
    end if
    end run
    --- Search on Name Field ---
    on GetDup_byName(theGroupName)
    set question to display dialog "Do you want to search for duplicates based on Names? " with icon 0 with title MsgTitle ¬
    buttons {"Continue", "Quit"} default button 1
    set rtnValue to button returned of question
    if rtnValue is "Quit" then
    -- tell application "Address Book" to quit
    tell me to quit
    end if
    tell application "Address Book"
    activate
    set biglist to {}
    set NoNameList to {}
    set theGroupNoName to "Duplicates No Names"
    set theGroup to theGroupName
    -- if not (exists (group "Dupilicate Entries")) then
    if not (exists (group theGroup)) then
    make new group with properties {name:theGroup}
    save
    end if
    if not (exists (group theGroupNoName)) then
    make new group with properties {name:theGroupNoName}
    save
    end if
    set the_names to name of people
    repeat with i from 1 to number of items in the_names
    set theName to item i of the_names
    -- return theName
    if theName is not in biglist then
    copy theName to end of biglist
    else
    set counter to (people whose name is theName)
    if (count of counter) > 1 then
    repeat with i from 1 to number of items in counter
    set this_item to item i of counter
    -- display dialog this_item
    add this_item to group theGroup
    end repeat
    -- return counter as string
    end if
    end if
    -- captures the Contacts without Name ---
    if theName contains "@" then
    -- display dialog theName
    set counterList to (people whose name is theName)
    repeat with i from 1 to number of items in counterList
    set this_item to item i of counterList
    -- display dialog this_item
    add this_item to group theGroupNoName
    end repeat
    end if
    -- save application "Address Book"
    end repeat
    save application "Address Book"
    set peopleCount to (count every person)
    -- set peopleCount to 50 -- only for testing --
    repeat with i from 1 to peopleCount
    set first_name to first name of person i as string
    set Last_Name to last name of person i as string
    if first_name is equal to "missing value" and Last_Name is equal to "missing value" then
    -- display dialog first_name & " : " & Last_Name
    set end of NoNameList to (id of person i)
    end if
    end repeat
    repeat with j from 1 to the count of NoNameList
    set tempdata to item j of NoNameList
    -- set testdata to person id tempdata
    -- if (name of groups of testdata does not contain theGroupNoEmail) then
    add tempdata to group theGroupNoName
    -- end if
    end repeat
    save application "Address Book"*)
    display dialog ¬
    "This Script Finished Processing Address Book Contacts the Duplicates are in the group" with title MsgTitle ¬
    with icon 1 ¬
    buttons {"Continue"} ¬
    giving up after 5
    end tell
    end GetDup_byName
    on Get_dup()
    set question to display dialog "Do you want to search for duplicates based on Names? " with icon 0 with title MsgTitle ¬
    buttons {"Continue", "Quit"} default button 1
    set rtnValue to button returned of question
    if rtnValue is "Quit" then
    -- tell application "Address Book" to quit
    tell me to quit
    end if
    tell application "Address Book"
    activate
    set theGroupEmail to "Duplicate Email Id's"
    set theGroupPhone to "Duplicate Phone"
    set theGroupNoEmail to "Only Phone Numbers"
    set thegroupNoPhone to "Only Email Id's"
    set theGroupNoData to "No Email or Phone"
    -- set theGroup to theGroupName
    if not (exists (group theGroupEmail)) then
    make new group with properties {name:theGroupEmail}
    save "Address Book"
    end if
    if not (exists (group theGroupPhone)) then
    make new group with properties {name:theGroupPhone}
    save "Address Book"
    end if
    if not (exists (group theGroupNoEmail)) then
    make new group with properties {name:theGroupNoEmail}
    save "Address Book"
    end if
    if not (exists (group thegroupNoPhone)) then
    make new group with properties {name:thegroupNoPhone}
    save "Address Book"
    end if
    if not (exists (group theGroupNoData)) then
    make new group with properties {name:theGroupNoData}
    save "Address Book"
    end if
    set ListofPeople to people --the_ID
    set ListofEmailID to value of emails of people --the_emails
    -- return ListofEmailID
    set ListofPhones to value of phone of people -- the_phones
    -- return ListofPhones
    set biglist to {}
    set ListEmail_Uniq to {}
    set ListEmail_Dup to {}
    set No_PhoneList to {}
    set No_EmailList to {}
    set No_dataList to {}
    set FlagEmail to false
    set FlagPhone to false
    -- repeat with i from 1 to number of items in the_emails
    repeat with i from 1 to count of ListofEmailID
    set thePersonID to item i of ListofPeople
    set theEmails to item i of ListofEmailID
    if theEmails is equal to {} then
    set end of No_EmailList to thePersonID
    else
    -- set FlagEmail to true
    repeat with j from 1 to count of theEmails
    set tmpdata to item j of theEmails
    -- return tmpdata
    if tmpdata is not in biglist then
    set end of biglist to tmpdata
    set end of ListEmail_Uniq to {tmpdata} & {thePersonID}
    else
    set end of ListEmail_Dup to {tmpdata} & {thePersonID}
    end if
    end repeat
    end if
    end repeat
    -- return ListEmail_Uniq
    -- return ListEmail_Dup
    -- save application "Address Book"
    set biglist to {}
    set ListPhone_Uniq to {}
    set ListPhone_Dup to {}
    -- repeat with i from 1 to number of items in the_emails
    repeat with i from 1 to count of ListofPhones
    set thePersonID to item i of ListofPeople
    set thePhones to item i of ListofPhones
    if thePhones is equal to {} then
    set end of No_PhoneList to thePersonID
    else
    -- set FlagPhone to true
    repeat with j from 1 to count of thePhones
    set tmpdata to item j of thePhones
    -- return tmpdata
    if tmpdata is not in biglist then
    set end of biglist to tmpdata
    set end of ListPhone_Uniq to {tmpdata} & {thePersonID}
    else
    set end of ListPhone_Dup to {tmpdata} & {thePersonID}
    end if
    end repeat
    end if
    end repeat
    -- return ListPhone_Uniq
    -- return ListPhone_Dup
    set the Dup_email to {}
    -- Find the Duplicates from the sorted list --
    repeat with i from 1 to the count of ListEmail_Dup
    set tempdata to item i of ListEmail_Dup
    set dataEmailDup to item 1 of tempdata
    set dataPersonDup to item 2 of tempdata
    repeat with j from 1 to the count of ListEmail_Uniq
    set tempdata to item j of ListEmail_Uniq
    set dataEmailUniq to item 1 of tempdata
    set dataPersonUniq to item 2 of tempdata
    -- display dialog mainEmail1 & "=" & mainEmail2 & " " & mainID1 & "=" & mainID2
    if dataEmailDup is equal to dataEmailUniq then
    set end of Dup_email to dataPersonDup -- & "," & dataPersonUniq
    set end of Dup_email to dataPersonUniq
    end if
    (* -- the code takes lot more time if add to group was used --
    if dataEmailDup is equal to dataEmailUniq then
    set testdata to person id dataPersonDup
    add testdata to group theGroup
    set testdata to person id dataPersonUniq
    add testdata to group theGroup
    end if
    end repeat
    end repeat
    -- return Dup_email
    set the Dup_Phone to {}
    -- Find the Duplicates from the sorted list --
    repeat with i from 1 to the count of ListPhone_Dup
    set tempdata to item i of ListPhone_Dup
    set dataPhoneDup to item 1 of tempdata
    set dataPersonDup to item 2 of tempdata
    repeat with j from 1 to the count of ListPhone_Uniq
    set tempdata to item j of ListPhone_Uniq
    set dataPhoneUniq to item 1 of tempdata
    set dataPersonUniq to item 2 of tempdata
    -- display dialog mainEmail1 & "=" & mainEmail2 & " " & mainID1 & "=" & mainID2
    if dataPhoneDup is equal to dataPhoneUniq then
    set end of Dup_Phone to dataPersonDup -- & "," & dataPersonUniq
    set end of Dup_Phone to dataPersonUniq
    end if
    (*if dataPhoneDup is equal to dataPhoneUniq then
    set testdata to person id dataPersonDup
    add testdata to group theGroup
    set testdata to person id dataPersonUniq
    add testdata to group theGroup
    -- save
    end if*)
    end repeat
    end repeat
    -- return Dup_Phone
    set onlyDupEList to every person of group theGroupEmail
    repeat with j from 1 to count of Dup_email
    set tempdata to item j of Dup_email
    if onlyDupEList does not contain {tempdata} then add tempdata to group theGroupEmail
    end repeat
    save application "Address Book"
    set onlyDupPList to every person of group theGroupPhone
    repeat with j from 1 to count of Dup_Phone
    set tempdata to item j of Dup_Phone
    if onlyDupPList does not contain {tempdata} then add tempdata to group theGroupPhone
    end repeat
    save application "Address Book"
    set onlyPhoneList to every person of group theGroupNoEmail
    repeat with j from 1 to the count of No_EmailList
    set tempdata1 to item j of No_EmailList
    if No_PhoneList does not contain {tempdata1} then
    if onlyPhoneList does not contain {tempdata1} then add tempdata1 to group theGroupNoEmail
    end if
    (*set flagE to false
    repeat with i from 1 to the count of No_PhoneList
    set tempdata2 to item i of No_PhoneList
    if tempdata1 is equal to tempdata2 then
    set flagE to true
    exit repeat
    end if
    end repeat
    if flagE is false then add tempdata1 to group theGroupNoEmail*)
    end repeat
    save application "Address Book"
    set onlyEmailList to every person of group thegroupNoPhone
    repeat with j from 1 to the count of No_PhoneList
    set tempdata1 to item j of No_PhoneList
    if No_EmailList does not contain {tempdata1} then
    if onlyEmailList does not contain {tempdata1} then add tempdata1 to group thegroupNoPhone
    end if
    end repeat
    save application "Address Book"
    set onlyList to every person of group theGroupNoData
    repeat with i from 1 to count of ListofPeople
    if (item i of ListofEmailID is equal to {}) and (item i of ListofPhones is equal to {}) then
    set tempdata to item i of ListofPeople
    if onlyList does not contain {tempdata} then add tempdata to group theGroupNoData
    end if
    end repeat
    save application "Address Book"
    display dialog ¬
    "This Script Finished Processing Address Book Contacts the Duplicates are in the group" with title MsgTitle ¬
    with icon 1 ¬
    buttons {"Continue"} ¬
    giving up after 5
    end tell
    end Get_dup
    on quit
    --set MsgTitle to "Change Email ID's Domain Name"
    save application "Address Book"
    display dialog "Contact Srikanth Kamath at [email protected] for any Help" with title MsgTitle with icon 1 buttons "OK"
    continue quit
    end quit

    Hello Srikanth Kamath,
    I'm not sure you're still following this thread, but anyway here's sample code I said I'd post later.
    --SCRIPT2
    main()
    on main()
    script o
    -- input data
    property xx : {1, 2, 3, 4, 5} -- list of parents
    property yy : {{"g", "h"}, {"a", "b"}, {"b", "e", "f"}, {"e"}, {"c", "d"}} -- list of children per parent
    -- work list
    property pp : {} -- list of children tagged by parent; i.e, lits of {child, parent}
    property qq : {}
    property rr : {}
    -- (1) build list of children tagged by parent
    repeat with i from 1 to count my xx
    set x to my xx's item i
    set y to my yy's item i
    repeat with p in y
    set end of my pp to {p's contents, x}
    end repeat
    end repeat
    --return pp -- {{"g", 1}, {"h", 1}, {"a", 2}, {"b", 2}, {"b", 3}, {"e", 3}, {"f", 3}, {"e", 4}, {"c", 5}, {"d", 5}}
    -- (2) sort tagged list by child as key
    msort(my by_key1, my pp)
    --return pp -- {{"a", 2}, {"b", 2}, {"b", 3}, {"c", 5}, {"d", 5}, {"e", 3}, {"e", 4}, {"f", 3}, {"g", 1}, {"h", 1}}
    -- (3) retrieve parents with duplicate child
    (* retrieve list of {child, parent} for duplicate child *)
    set my qq to uniq(my eq_key1, my pp, {_dup:true})
    --return qq -- {{"b", 2}, {"b", 3}, {"e", 3}, {"e", 4}}
    (* retrieve list of parent *)
    repeat with q in my qq
    set r to q's item 2
    if r is not in my rr then set end of my rr to r
    end repeat
    return rr -- {2, 3, 4}
    end script
    tell o to run
    end main
    on by_key1(x, y)
    msort's comparator for list of lists
    key = item 1, ascending
    returns true iff x and y are out of order
    return x's item 1 > y's item 1
    end by_key1
    on eq_key1(x, y)
    uniq's comparator for list of lists
    key = item 1
    returns true iff x and y are considered equal
    return x's item 1 = y's item 1
    end eq_key1
    on msort(cmp_, aa) -- v1.2f2
    Basic recursive merge sort handler having list sorted in place.
    handler cmp_ : comparator
    * cmp_(x, y) must return true iff list element x and y are out of order.
    list aa : list to be sorted in place
    script o
    property parent : {} -- limit closure to minimum
    property xx : aa -- to be sorted in place
    property xxl : count my xx
    property yy : {}
    property cmp : cmp_
    on merge(p, q, r)
    property xx: source list
    integer p, q, r : absolute indices to specify range to be merged such that
    xx's items p thru r is the target range,
    xx's items p thru (q-1) is the first sublist,
    xx's items q thru r is the second sublist.
    (p < q <= r)
    local i, j, k, xp, xr, yi, yj, ix, jx
    if r - p = 1 then
    set xp to my xx's item p
    set xr to my xx's item r
    if my cmp(xp, xr) then
    set my xx's item p to xr
    set my xx's item r to xp
    end if
    return -- exit
    else
    if p < q - 1 then merge(p, (p + q) div 2, q - 1)
    merge(q, (q + r + 1) div 2, r)
    end if
    At this point, sublits xx[p, q-1] and xx[q, r] have been already sorted (p < q <= r)
    if my cmp(my xx's item (q - 1), my xx's item q) then
    else -- xx[p, q-1] & xx[q, r] are already sorted
    return
    end if
    set yy to my xx's items p thru r -- working copy for comparison
    set ix to q - p
    set jx to r - p + 1
    set i to 1
    set j to q - p + 1
    set k to p
    set yi to my yy's item i
    set yj to my yy's item j
    repeat
    if my cmp(yi, yj) then
    set my xx's item k to yj
    set j to j + 1
    set k to k + 1
    if j > jx then
    set my xx's item k to yi
    set i to i + 1
    set k to k + 1
    repeat until k > r
    set my xx's item k to my yy's item i
    set i to i + 1
    set k to k + 1
    end repeat
    return
    end if
    set yj to my yy's item j
    else
    set my xx's item k to yi
    set i to i + 1
    set k to k + 1
    if i > ix then
    set my xx's item k to yj
    set j to j + 1
    set k to k + 1
    repeat until k > r
    set my xx's item k to my yy's item j
    set j to j + 1
    set k to k + 1
    end repeat
    return
    end if
    set yi to my yy's item i
    end if
    end repeat
    end merge
    on cmp(x, y)
    (* primary comparator *)
    return x > y
    end cmp
    local d, i, j
    if xxl ≤ 1 then return
    if cmp_ = {} then set my cmp to cmp -- comparator fallback
    my merge(1, (xxl + 1) div 2, xxl)
    end script
    tell o to run
    end msort
    on uniq(eq_, aa, {dup:dup}) -- v0.21
    handler eq_ : comparator eq_(x, y) that returns true iff x and y are considered equal
    list aa : pre-sorted list
    (precisely, a list organized such that any duplicate items are adjacent to each other)
    boolean _dup : option whether return unique items or duplicate items
    return duplicate if true, unique otherwise.
    script o
    property parent : {} -- limit closure to minimum
    property xx : aa
    property yy : {}
    property eq : eq_
    on eq(x, y)
    (* primitive comparator *)
    x = y
    end eq
    if eq_ = {} then set my eq to my eq -- comparator fallback
    local t, x, _on
    if (count my xx) < 2 then return my xx's contents
    if _dup then
    set _on to false
    set t to my xx's item 1
    repeat with i from 2 to count my xx
    set x to my xx's item i
    if eq(x, t) then
    set end of my yy to t
    set _on to true
    else if _on then
    set end of my yy to t
    set _on to false
    end if
    set t to x
    end repeat
    if _on then set end of my yy to x
    return my yy's contents -- return duplicate elements
    else
    set t to my xx's item 1
    set end of my yy to t
    repeat with i from 2 to count my xx
    set x to my xx's item i
    if eq(x, t) then
    else
    set end of my yy to x
    set t to x
    end if
    end repeat
    return my yy's contents -- return uinque elements
    end if
    end script
    tell o to run
    end uniq
    --END OF SCRIPT2
    In order to apply it to your current Address Book problem, replace the main() handler with something like the following one.
    --SCRIPT2a (part)
    on main()
    script o
    -- input data
    property xx : {} -- list of parent; given later
    property yy : {} -- list of children per parent; given later
    -- work list
    property pp : {} -- list of children tagged by parent; i.e, lits of {child, parent}
    property qq : {}
    property rr : {}
    -- (0) get input data from AB
    tell application "Address Book"
    tell people
    set xx to its id
    set yy to its every email's value
    end tell
    end tell
    -- (1) build list of children tagged by parent *)
    (* omitted (same as the previous) *)
    -- (2) sort tagged list by child as key
    (* omitted (same as the previous) *)
    -- (3) retrieve parents with duplicate child
    (* omitted (same as the previous) *)
    -- (4) group the retrieved people in AB
    tell application "Address Book"
    repeat with r in my rr
    add person id r to group "duplicate email"
    end repeat
    end tell
    end script
    tell o to run
    end main
    --END OF SCRIPT2a
    Good luck,
    Hiroto
    Message was edited by: Hiroto

  • How do I make the iPhone use only the Address Book contacts?

    I just spent some time cleaning up my Address Book on my Mac. I want to sync it back to the iPhone so that the phone shows the exact same contacts. How do I know what will override which contacts are used? I don't want the iPhone to merge anything, I want a clean start with the Address Book I just cleaned up.
    Going forward of course I will want to keep contacts I've added on the phone, but for now the Address Book is most current.

    Hey Exit,
    Click on the iPhone on the left side of iTunes, under Devices> Click Info above the picture of the iPhone> scroll to the bottom and check Contacts under Advanced Replace Information on this iPhone.
    This will erase the contacts on the iPhone and replace them with contacts in Address Book.
    Jason

  • How can I get the address book to sort by "Last" name (using v 31.3.0).

    After a computer crash, I had to load Thunderbird (v31.3.0) back into my machine running Windows 8.1, and I successfully imported my address book back up file into Thunderbird (v31.3.0).
    My problem is that I don't see an option to sort the address book by "Last" name, which was available with the version of Thunderbird I had before the crash.
    How can I get the address book to sort by "Last" name?

    In 'Address Book'
    Select address book
    'View' > 'Show name as' > 'Last/First'
    The you can sort by Name.
    Either click on 'Name' column header to change sort order,
    If reversed, then click on 'Name' column header again to reverse the order.
    Or
    'View' > 'Sort By' > choose 'Name' and 'Ascending'

  • How do I delete contacts from the address book?

    Purchased a new MacBook Pro and iphone4 yesterday.  The phone has several hundred contacts that I no longer need.  How do I deleted the contacts that I don't need anylonger from the address book on my MacBook?  There are still several hundred that I need to keep.  I don't see an easy way to delete them on the computor.  I can't imagine that I'd have to go through one by one on my iphone.........seriously?

    On the MBpro, click on the card to delete or mark several in a row by holding Shift down/up arrow.  Then hit the delete key on the keyboard.
    Regards,
    Captfred

  • How can I synch the Address Book on my Mac to the Contacts on my iPad (or, can I setup Address Book on my iPad?)

    How can I synch the Address Book on my Mac to the Contacts on my iPad (or, can I setup Address Book on my iPad?)

    Selected under the Info tab for your iPad sync preferences with iTunes.
    With such a question, you should spend some time with the user guide.
    http://manuals.info.apple.com/en/ipad_user_guide.pdf

  • Unable to synchroniz​e the Address Book on the BB Device with Outlook Software 2010 Contacts

    Enviroment :
    Device Black Berry Bold 9700
    Back Berry Device Software V6
    Cause of problem :
    On the BB Device there are 2 Adress Books with the same name.
    The first one with 109 elements and the flag for wireless synchronization
    The second, which is of most importance to me since it includes my business address book, contains 1837 elements and does NOT have the flag for wireless synchronization.
    Whenever I  try to synchronize the BB Device with the PC , using Black Berry Device Software on my Windows 7 based PC and Outlook 2010 Application Software, only the first Adress Book appears active.
    I tried to solve the problem through the BB Support Forum (see link below)
    http://btsc.webapps.blackberry.com/btsc/microsites​/search.do?cmd=displayKC&docType=kc&externalId=KB1​...
    and regretfully I found out that no solution are available so far.
    This is a previously reported issue that has been escalated internally to our development team. No resolution time frame is currently available.
    The suggested Work Around doesn't work.
    Since both address books could be cleaned but not erased, it is impossible to delete the first address book and subsequently synchronize the right data .
    I tried to synchronize the BB Device with the Windows contacts but the result is the same: the synchronization works only for the first (small) Address Book.
    Another bit of info, to worsen the situation: last week the HDD (internal disk) on my PC crashed, therefore I lost all my data; as a result, the only correct Address Book  data available is inside the Black Berry device (larger list, which is the second, as stated above) , thus I absolutely need to recover all the 1837 addresses included, since they are vital for my business work.
    I need your help to solve this situation caused by an evident Black Berry Software bug.
    Thanks in advance

    I do not receive any suggestions to solve my problem.
    After 6 month the problem is very urgent, my business address book is vital for my work.
    I have only the copy on the Device Black Berry Bold 9700 and I absolutely need to have a copy of the address book on my computer.
    Do you have solved the bug.
    I need a quick answer and a final right solution
    Thanks 
    Luigi Policoro

  • Why is the Address Book app slow to update my contacts?

    When I try to import my Google contacts into my Mac Address Book via vCard (.vcf) format, Address Book app takes an eternity to finish updating (like a half hour or more), during which I cannot do anything else in the Address Book.
    The last time I tried to do so, yesterday, my entire system became extremely slow and I had to restart the computer. BTW, I use Mac OS X v. 10.7.5 (Lion).
    I also notice that searching for contacts within the Address Book is an extremely slow process. I begin to type a name and the program is very sluggish to respond or display anything, forcing me to type very slowly.
    What can I do to resolve these issues so I can update and search for my contacts in the Address Book within reasonable amounts of time?

    you have a 4G iPod. As Apple said in June, iOS 7 is not compatible with the 4G iPod.
    All the iOS devices compatible (iPhone 4 and later, iPad 2 and later, and 5G iPod touch) with iOS 7 have at least 512 MB of memory (RAM). The 4G iPod only has 256 MB

  • Changes to contact information in iMac / MacBook Address Book results in duplicate entries only on the iPhone / iPad

    I have my iCloud account synced to an iMac, MacBook, iPhone 4, and iPad 2.  Any changes I make to a contact on the MacBook and iMac result in 2 different contacts on my iPhone with the same name.
    In other words, making changes in the address book on my iMac or MacBook, adds another contact on my iPhone / iPad with the new information and same name.  As an example, if I have "John Doe" as contact on all of my devices, and I decide to make a change on my MacBook or iMac, I suddenly have 2 entries on my iPhone as John Doe.  They are not exact duplicates.  1 of the John Doe entries has my original information, and the other John Doe has my new information.  Deleting the "old" John Doe contact deletes all of the entries on all of my devices and I lose all of my contact information completely on all of the devices for John Doe.
    Making changes to a contact on my MacBook and iMac only causes issues with my iPhone / iPad.  The synchronization between my iMac and MacBook work just fine, and a new entry with the same name is not created.  My MacBook and iMac do not show duplicates so the "Look for Duplicates" function in my address book doesn't solve the problem on my iPhone.  The only solution so far that seems to work is to go into the iCloud Settings on my iPhone / iPad, temporarily turn off my Contacts, thereby effectively deleting them, and then turning the Contacts back on.  I did change my Apple ID email address recently so I wonder if that plays a role or not.  My new Apple ID has been changed on all of my devices.
    Hope that makes sense and hope some people out there have some ideas.

    If you are using Outlook 2011, make sure you have the latest service pack and update.
    Make sure your Mac Book and all devices have the latest update.
    If the Calendar on the Mac Book is correct go to step 3
    Assuming Mac Book Calendar is correct, remove accounts from iPhone, iPad.
    Reconnect account to iPhone, iPad account.
    All calendars should now be in sync.
    There are times when the Mail, Calendar, Contact application has been corrupted (Outlook 2011, Mac Mail, Entourage, etc).  This will cause all kinda of issues on your devices.  You have to repair the mail client first.  In the case of Outlook you can delete the profile and recreate it.  In Mac Mail you can rebuild (from Tools on the menu bar)

  • How to make an appointment with a contact from the address book directly to iCal

    What is the easiest way to make an appointment with a contact from the address book. My idea is that once you identify a contact down the bottom where it has Text message Share contact, add to favorites it would be nice if it had make appointment in iCal. The open up iCal to todays date and go from there with all the relevant details?

    In the Print dialogue box select Lists in the Style drop down box.

  • How to get the contact photos from the address book on the ipod ??

    Hello !
    I figured out that it was available to sync the address book (on Mac OS)with the contact photos and find them on your ipod nano chromatic... But I have Windows and I can't make it work with Outlook. I can sync it with itunes and have the contact names and few infos but not the pictures, there is just a grey silhouette instead of the contact photo. Is there anybody that know how to get the contact picture on the ipod (with Windows OS) ?
    Thanks a lot in advance !
    Hyrekia

    Hooray !! I have found how to do it !! There is a new option now on itunes when you sync your ipod with outlook. You just have to check the box entitled "add the contact pictures". I'm not sure it was there before, but I did an update today !!
    I'm really glad !!
    Hyrekia

  • When forwarding an e-mail I have lost the address book contact list on the left side.

    I used to have the address book contact list on the left side of the page being forwarded to allow easy selection of addressees. It's gone and I need it back.
    Thank you very much

    Open a Write window and press F9 to toggle the Contact Sidebar on and off.
    You can also turn it on from the View menu in the Write window.

  • I am having issues with the address book in iphone 4s ios 7. it won't let me add an address to a new contact. anybody knows what's going on ?

    I am having issues with the address book in iphone 4s ios 7. it won't let me add and adress for a new contact. anybody has an idea of what's wrong and the solution ?

    Do you have Restrictions turned on in Settings>General?

Maybe you are looking for

  • Floppy Disk Trouble

    I can't seem to get my floppy disk to work correctly.  The light seems to stay on.  I've tried putting a disk in slowly, no force, and the light still stays on...  I tried going to my computer and clicking on drive A and waiting till it asked to inse

  • Have to lock twice...in order for "slide to unlock" to work!

    I have not found anything similar to my issue so I'm posting this hoping someone can help me! My iPhone 5S works fine, however I have the following situation... When I hit "Home" to unlock, I will get the "Slide to Unlock" message, but the screen is

  • Does SharePoint foundation supports Reporting services

    Does user will be able to create Adhoc reporting services in SharePoint foundation 2010, our requirement is the SMDL created bit BIDS(Business Intelligence Development Studio) would be uploaded into the business intelligence site and user uses these

  • My iMessage will not activate

    I keep getting the message "an error occurred during activation.  Try again" IMessage worked just fine a couple of days ago...now not. Help!  Please

  • Doubts about result table in endeca 3.1

    Hi All, I created the result table in Endeca 2.4 by using the checkbox for Use EQL query and entered the query but I cannot see the option of entering the eql in endeca 3.1.Has something changed or I have missed something? and In order to enable dril