I recently imported all my personal and business contacts into the Entourage
Address Book, but I fail to understand how to use Firstname to sort the
address book. As per my understanding, the default setting is to sort by the
Lastname.
Anyone got any suggestions?
Copy the First Name into the Nickname field (or any Custom Field) and sort
by that field. Add the column (if not there) via View/Columns. then drag the
Column to the far left or second left if you want to.
You can do the copying easily by AppleScript. Paste this into Script Editor
(in /Applications/AppleScript/) and run it:
tell application "Microsoft Entourage"
repeat with theContact in (every contact)
tell theContact
set nickname to (get first name)
end tell
end repeat
beep
display dialog "All done!"
end tell
You can change the significant line to
set custom field one to (get first name)
(or 'custom field five', etc.)
--
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.