Address Book problem

D

Deva Solomon

The contacts in my entourage address book consist of two types.

1. they are persons
2. they are businesses or organizations

The problem is two-fold. Entourage refuses to mix the businesses in with
the persons. The other problem is that it will not sort the addresses by
name of company if there is no name of person specified. Any help on these
two issues would be much appreciated

Deva
 
B

Bob Greenblatt

The contacts in my entourage address book consist of two types.

1. they are persons
2. they are businesses or organizations

The problem is two-fold. Entourage refuses to mix the businesses in with
the persons. The other problem is that it will not sort the addresses by
name of company if there is no name of person specified. Any help on these
two issues would be much appreciated

Deva
Which version of entourage? How have you distinguished between personal and
business, with a category? If so, simply select all for the category and all
will be shown. Entourage 2004 sorts just fine on company if no individual
name is specified. What are you seeing that's not working?
 
D

Deva Solomon

Entourage 2004 on an iBook 1Ghz with Mac OS 10.3.7

Mostly I have not assigned a category. I have selected to sort by name by
clicking on the "name" column title. I just added a new company and it went
to the top instead of the W's where it should have gone. The companies will
not mingle with the persons and the companies are not sorted alphabetically.

Deva
 
B

Bob Greenblatt

Entourage 2004 on an iBook 1Ghz with Mac OS 10.3.7

Mostly I have not assigned a category. I have selected to sort by name by
clicking on the "name" column title. I just added a new company and it went
to the top instead of the W's where it should have gone. The companies will
not mingle with the persons and the companies are not sorted alphabetically.

Deva
Did you sort by company? That will move the new one to where it belongs.
Entourage will only sort by one column at a time. So, first sort by name,
and then by company and it should put the names alphabetically within the
company. And, a better way to do this is to assign categories.
 
D

Deva Solomon

Thanks for the reply Bob,

I still can't figure it out. When I am in the Address book and I click the
view menu, the choice to "arrange by" is inaccessible. The way I am telling
the address book to sort is by clicking the column heading "name" this
results in the errors described below.
Thanks again,

Deva
 
B

Bob Greenblatt

Thanks for the reply Bob,

I still can't figure it out. When I am in the Address book and I click the
view menu, the choice to "arrange by" is inaccessible. The way I am telling
the address book to sort is by clicking the column heading "name" this
results in the errors described below.
Thanks again,

Deva
When you click on the name column, the addresses are sorted by name. If you
click on it again, it is sorted in the reverse order. Look at the arrow at
the top of the column. Likewise to sort on company, click on the company
column.

Please describe again what you are seeing and why you think there is a
problem after you have done this.
 
M

Mickey Stevens

Paul Berkowitz posted this in response to this issue a while back:

What you're seeing is a rather poorly implemented update that's not finished
yet.

Entourage sorts by LastName, but displays as FirstName LastName. (If there's
only a first name it displays alphabetically as if it were a last name.)

In previous versions of Entourage, contacts with _no_ first or last name
appeared blank in the Name column, and all bunched at the top. Since there
was absolutely no way to sort a blank entry, they appeared in the order they
were created, which looks haphazard.

In Entourage 2004, they suddenly decided to display other field names if
both First and Last names are missing. In this order of priority, until a
non-blank entry appears: Nickname, Company, Email Address, Instant Message
Address. But unfortunately they never got around to alphabetizing them
within the Name column in the same way they do for FirstName-only contacts.
They're still all bunched at the top, and still in the haphazard order of
creation.

The trick is to never make company-only or email-only contacts. Always copy
the company name or email into the Last Name field. Then everything will
sort correctly. If you have more than a few of these, you can fix them by
running the following script in Script Editor:

tell application "Microsoft Entourage"
    set noNames to every contact whose name = ""
    repeat with noName in noNames
        set comp to company of noName
        if comp ‚ "" then
            set last name of noName to comp
        else
            try
                set last name of noName to (get email address 1 of noName)
            end try
        end if
    end repeat
    beep
    display dialog "All done!"
end tell
 
J

Jean-Pierre Bollen

Bob Greenblatt said:
When you click on the name column, the addresses are sorted by name. If you
click on it again, it is sorted in the reverse order. Look at the arrow at
the top of the column. Likewise to sort on company, click on the company
column.

Please describe again what you are seeing and why you think there is a
problem after you have done this.

Bob,
I guess Deva has company enties without persons.
Take as an example an airline reservation office: just company name,
telephone and perhaps an address, but no specific person. In this case
Entourage fills in the company name in the namecolumn in the Addressbook
overview screen and puts the companies above all the others.

The only solution I can offer is to insert the company name in the
family name field. This way Entourage correctly sorts all the entries.

Jean-Pierre
 
P

Paul Berkowitz

Bob,
I guess Deva has company enties without persons.
Take as an example an airline reservation office: just company name,
telephone and perhaps an address, but no specific person. In this case
Entourage fills in the company name in the namecolumn in the Addressbook
overview screen and puts the companies above all the others.

The only solution I can offer is to insert the company name in the
family name field. This way Entourage correctly sorts all the entries.

As I just wrote in another thread, you can do this for all such existing
contacts by running this script:

tell application "Microsoft Entourage"
set compContacts to every contact whose name = "" and company ‚ ""
repeat with compContact in compContacts
tell compContact to set last name to (get company)
end repeat
display dialog "All done!"
end tell


--
Paul Berkowitz
MVP MacOffice
Entourage FAQ Page: <http://www.entourage.mvps.org/faq/index.html>
AppleScripts for Entourage: <http://macscripter.net/scriptbuilders/>

Please "Reply To Newsgroup" to reply to this message. Emails will be
ignored.

PLEASE always state which version of Microsoft Office you are using -
**2004**, X or 2001. It's often impossible to answer your questions
otherwise.
 
Top