Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default Printing Envelopes

Anyone know of a way to print mail addresses on envelopes in Excel 2000?
I have a worksheet with many addresses. I want to print the addresses on the
envelopes for mailing.
Any help appreciated. Thanks in advance.
--



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default Printing Envelopes

I use this to print an envelope or a form letter.

Sub FORMLTR()
For Each cel In Range("B5:B46") 'Names of people
If UCase(cel.Offset(0, 10)) = "X" Then 'x means to use
'names are in lastname, first name
[k1] = Trim(Right(cel, Len(cel) - Application.Find(",", cel)) & " " &
Left(cel, Application.Find(",", cel) - 1))
[k2] = cel.Offset(0, 1) 'street
'city,state,zip for line below
[k3] = cel.Offset(0, 2) & ", " & cel.Offset(0, 3) & " " & cel.Offset(0, 4)
x = [addresses!WhichLetter]

If Range("Preview") Then
Sheets(x).PrintPreview
Else
Sheets(x).PrintOut
End If
End If
Next
end sub

"xnman" wrote in message
...
Anyone know of a way to print mail addresses on envelopes in Excel 2000?
I have a worksheet with many addresses. I want to print the addresses on

the
envelopes for mailing.
Any help appreciated. Thanks in advance.
--





  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Printing Envelopes

Use the Word mailmerge functionality with the Excel file as the source.

--
Regards,
Tom Ogilvy

xnman wrote in message
...
Anyone know of a way to print mail addresses on envelopes in Excel 2000?
I have a worksheet with many addresses. I want to print the addresses on

the
envelopes for mailing.
Any help appreciated. Thanks in advance.
--





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do you print envelopes using an excel spreadsheet Stephie Excel Discussion (Misc queries) 4 August 29th 11 08:11 PM
how do i print from excel to envelopes gus Excel Discussion (Misc queries) 2 March 29th 10 08:46 PM
printing envelopes from excell Rick Excel Discussion (Misc queries) 1 December 4th 07 04:31 AM
Can Excel Adress Envelopes? Donald Excel Worksheet Functions 1 September 20th 06 07:52 PM
print envelopes from excel data lele New Users to Excel 2 May 4th 06 01:51 PM


All times are GMT +1. The time now is 04:11 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"