Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default anyone has a routine to print envelopes from an existing XLS addr

I need a macro or procedure of a sort to print envelopes for family news-letter
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 161
Default anyone has a routine to print envelopes from an existing XLS addr

"tiborp" wrote in message
...
I need a macro or procedure of a sort to print envelopes for family
news-letter



mail merge and this is a WORD question, not Excel........don't tell me you
are writing a NEWSLETTER using Excel......


  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,124
Default anyone has a routine to print envelopes from an existing XLS addr

Why not? I do it all the time. Don't need no "stinking word"

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Gordon" wrote in message
...
"tiborp" wrote in message
...
I need a macro or procedure of a sort to print envelopes for family
news-letter



mail merge and this is a WORD question, not Excel........don't tell me you
are writing a NEWSLETTER using Excel......


  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,124
Default anyone has a routine to print envelopes from an existing XLS addr

Here is one I designed for a POA a long time ago.

Sub FormLetter()
Application.ScreenUpdating = False
For Each c In Sheets("Addresses").Range("b5:b45")
If UCase(c.Offset(0, 9)) = "X" Then

x = InStr(c, ",")
[EnvName] = Trim(Right(c, Len(c) - x) & " " & Left(c, x - 1))
[EnvStreet] = Trim(c.Offset(0, 1))
[envCity] = c.Offset(0, 2) & ", " & c.Offset(0, 3) & " " & c.Offset(0, 4)
[himher] = Trim(Right(c, Len(c) - x))

[numtrees] = c.Offset(0, 10)
If [WhichLetter] = "Trees" Then
[amountdue] = c.Offset(0, 19)
Else
[amountdue] = c.Offset(0, 20)
End If

Ltr = [WhichLetter]
Sheets(Ltr).Range("f12") = [usedate]
If Range("Preview") Then
Sheets(Ltr).PrintPreview
Else
Sheets(Ltr).PrintOut
End If
End If
Next
Application.ScreenUpdating = True
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"tiborp" wrote in message
...
I need a macro or procedure of a sort to print envelopes for family
news-letter


  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 161
Default anyone has a routine to print envelopes from an existing XLS addr

"Don Guillett" wrote in message
...
Why not? I do it all the time. Don't need no "stinking word"


Presumably you use PowerPoint to send emails?





  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,124
Default anyone has a routine to print envelopes from an existing XLS addr

Noooooooooooo

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Gordon" wrote in message
...
"Don Guillett" wrote in message
...
Why not? I do it all the time. Don't need no "stinking word"


Presumably you use PowerPoint to send emails?




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
print addresses onto envelopes in excel neil in cornwall Excel Discussion (Misc queries) 2 May 31st 07 12:10 PM
How do I print envelopes from an excel spreadsheet Gecko Excel Discussion (Misc queries) 2 April 13th 07 11:58 PM
How do I print addresses onto envelopes from excel? Megan Excel Discussion (Misc queries) 2 November 25th 06 01:17 PM
print envelopes from excel data lele New Users to Excel 2 May 4th 06 01:51 PM
Envelopes will not print using mail merge. mission Excel Discussion (Misc queries) 1 September 29th 05 10:24 AM


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

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

About Us

"It's about Microsoft Excel"