Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I need a macro or procedure of a sort to print envelopes for family news-letter
|
#2
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
"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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
"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
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
print addresses onto envelopes in excel | Excel Discussion (Misc queries) | |||
How do I print envelopes from an excel spreadsheet | Excel Discussion (Misc queries) | |||
How do I print addresses onto envelopes from excel? | Excel Discussion (Misc queries) | |||
print envelopes from excel data | New Users to Excel | |||
Envelopes will not print using mail merge. | Excel Discussion (Misc queries) |