code to remove one field from hundreds of contacts

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to reomove any data from the "Job Title" field from about 500
contacts. Is there a way to do this programatically without having to export
them to access, edit, and import again? I've had to do this in the past
several times and a simple little program I could run would save me hours of
trouble
Thanks,
ck
 
Charlie:

The last example in the following KB article shows how to iterate through
all the contacts in a folder. Inside the For Each loop you could use:

Contact.JobTitle = ""
Contact.Save

http://support.microsoft.com/default.aspx?scid=kb;en-us;291120

--
David Lloyd
MCSD .NET
http://LemingtonConsulting.com

This response is supplied "as is" without any representations or warranties.


I need to reomove any data from the "Job Title" field from about 500
contacts. Is there a way to do this programatically without having to
export
them to access, edit, and import again? I've had to do this in the past
several times and a simple little program I could run would save me hours of
trouble
Thanks,
ck
 
Back
Top