Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Excel / New Users / February 2008

Tip: Looking for answers? Try searching our database.

ENVEOLPES FROM EXCEL

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
EXCEL - 01 Feb 2008 15:31 GMT
iM TRYING TO COPY AND PASTE FROM EXCEL TO MICROSOFT WORD TO DO ENVELOPES,
WHEN I COPY AND PASTE TO ENVELOPES I GET ALL THE ADDRESSES THAT I HAVE PASTED
ON 1 ENVELOPE. EVEN IF I HIGHLITE THE ONE I WANT TO COPY FROM EXCEL IT PRINTS
ALL THE ADDRESS ON THE ENVELOPE
Don Guillett - 01 Feb 2008 16:02 GMT
Please do NOT type in all CAPS. It is hard to read and considered to be very
rude netiquette everywhere.
Here is a macro I have in my sheet module to populate an envelope(trial and
error to fit printer) to print from an Excel sheet. I have a list of names
in columns

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
If Target.Column = 1 Then
If ActiveCell.Offset(0, 2) <> "" Then
Title = ActiveCell.Offset(0, 2)
Else
Title = ""
End If
If ActiveCell.Offset(0, 1) <> "" Then
FirstName = ActiveCell.Offset(0, 1) & " "
Else
FirstName = ""
End If
LastName = ActiveCell
ADDRESSEE = Application.Proper(Title + FirstName + LastName)
[envelope!c6] = ADDRESSEE
[envelope!c7] = ActiveCell.Offset(0, 3)
[envelope!c8] = ActiveCell.Offset(0, 4)
[envelope!c9] = ActiveCell.Offset(0, 5)
Sheets("envelope").Select
End If
End Sub

Signature

Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com

> iM TRYING TO COPY AND PASTE FROM EXCEL TO MICROSOFT WORD TO DO ENVELOPES,
> WHEN I COPY AND PASTE TO ENVELOPES I GET ALL THE ADDRESSES THAT I HAVE
> PASTED
> ON 1 ENVELOPE. EVEN IF I HIGHLITE THE ONE I WANT TO COPY FROM EXCEL IT
> PRINTS
> ALL THE ADDRESS ON THE ENVELOPE
Gord Dibben - 01 Feb 2008 18:22 GMT
Don't copy/paste to Word...............use mailmerge.

Assuming you are using Word for the mailmerge and Excel for the source see these
sites for help.

http://www.mvps.org/dmcritchie/excel/mailmerg.htm

http://www.mvps.org/word/FAQs/MailMerge/CreateAMailMerge.htm

http://www.mvps.org/word/FAQs/MailMerge/CreateADataSource.htm

Gord Dibben  MS Excel MVP

>iM TRYING TO COPY AND PASTE FROM EXCEL TO MICROSOFT WORD TO DO ENVELOPES,
>WHEN I COPY AND PASTE TO ENVELOPES I GET ALL THE ADDRESSES THAT I HAVE PASTED
>ON 1 ENVELOPE. EVEN IF I HIGHLITE THE ONE I WANT TO COPY FROM EXCEL IT PRINTS
>ALL THE ADDRESS ON THE ENVELOPE
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.