Then use the new value as your mail merge field.
Main Topics
Browse All TopicsI'm trying to do a mail merge from a spreadsheet where the names are listed like this:
John D. Smith
Karen W. Holly
Maria Wei Jeang
...
I would like the results to look like this in the final output of the mail merge:
jsmith
kholly
mjeang
...
Is it possible through the mail merge to concatenate the name with firstname initial and lastname. Omitting any middle name or initial? Then lowercasing the whole name?
Thank you
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Assuming that the full name is in column A. Select column A then use the text to columns tool which you should be able to find, I believe it is under tools but I am working with 2007. It is there I may be wrong about where. When the text to columns dialog box opens you will want to select delimited and your delimiter on teh next screen should be space. Once your text to columns is complete lets say your new columns look like A1 John B1 A. C1 Doe then you can place the formula in B1 or D1.
=Concatenate(mid,A1,1,1),C
Business Accounts
Answer for Membership
by: peetjhPosted on 2009-11-05 at 16:17:27ID: 25755596
I'm not sure if mail merge can perform what you are looking for on it's own. I think your best bet may be use the text to columns feature in excel and then use a function like =Concatenate(mid(A1,1,1),A 3) if your text was in columns 1 - 3.