Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
ericmefron ericmefron is offline
external usenet poster
 
Posts: 1
Default New Outlook Contact Entries Not in Word Mail Merge Recipients

New entries into Outlook 2007 Contacts show up in Address Book but not in
Word 2007 Mail Merge Recipients. This is a new problem. It never used to
happen, but it's happening now.
--
eman7353
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default New Outlook Contact Entries Not in Word Mail Merge Recipients

Do the names and addresses not appear or just the addresses?

If the latter open the contact and resave it - or run the following macro
from Outlook

Sub ResaveContact()
Dim objOL As Outlook.Application
Dim objNS As Outlook.NameSpace
Dim objContactFolder As Outlook.MAPIFolder
Dim objContact As Outlook.ContactItem
Dim objItems As Outlook.Items
Dim obj As Object
Dim strName As String
On Error Resume Next
Set objOL = CreateObject("Outlook.Application")
Set objNS = objOL.GetNamespace("MAPI")
Set objContactFolder = objNS.GetDefaultFolder(olFolderContacts)
Set objItems = objContactFolder.Items
For Each obj In objItems
'Test for contact and not distribution list
If obj.Class = olContact Then
Set objContact = obj
With objContact
.Display
.Close (olSave)
End With
End If
Err.Clear
Next
Set objOL = Nothing
Set objNS = Nothing
Set obj = Nothing
Set objContactFolder = Nothing
Set objContact = Nothing
End Sub

which will resave all the contacts

If the former, try deleting the address book from Outlook (NOT THE CONTACTS
LIST!!!) and re-add it, which will reset the links to the address book from
the contacts.

From Outlook File Data File Management Address Books Select Outlook
Address Book (normally this will be the only address book) Change Remove
the address book, then add it back again from the previous dialog.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



ericmefron wrote:
New entries into Outlook 2007 Contacts show up in Address Book but
not in Word 2007 Mail Merge Recipients. This is a new problem. It
never used to happen, but it's happening now.



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Mail Merge in Outlook Businesss Contact Manager Charles[_3_] Mailmerge 1 June 1st 08 06:49 AM
How do I access all outlook contact folders in word mail merge. Tracy Mailmerge 1 October 8th 07 08:38 PM
Word crashes when I try to mail merge using Outlook recipients Medicalst Mailmerge 3 January 3rd 07 10:39 AM
When I use Mail merge I can get my contact list from outlook Carlos De Tirado Mailmerge 1 October 19th 06 04:44 AM
Word Mail Merge with Outlook Business Contact Manager macrowder Mailmerge 1 November 30th 05 08:54 PM


All times are GMT +1. The time now is 06:46 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"