Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Printing Names & addresses on Envelopes - how?

Hi
I haved a spreadsheet with names, addresses, postcode etc that I
usually print onto labels using Word & then stick on envelopes.
Is it possible to print directly onto envelopes?
If so how would I go about that?
Thank you
--
Martin
©¿©¬
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7
Default Printing Names & addresses on Envelopes - how?


"Martin ©¿©¬" wrote in message
...
Hi
I haved a spreadsheet with names, addresses, postcode etc that I
usually print onto labels using Word & then stick on envelopes.
Is it possible to print directly onto envelopes?
If so how would I go about that?
Thank you
--
Martin
©¿©¬


Mail Merge in Word has the option to generate envelopes

Chris


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,522
Default Printing Names & addresses on Envelopes - how?

On Thursday, April 5, 2012 6:30:08 AM UTC-5, Martin ©¿©¬ wrote:
Hi
I haved a spreadsheet with names, addresses, postcode etc that I
usually print onto labels using Word & then stick on envelopes.
Is it possible to print directly onto envelopes?
If so how would I go about that?
Thank you
--
Martin
©¿©¬

I have an xl file where I do this using only excel. First you must set up an envelope sheet that prints your envelope on your printer. Then, a looping macro or a double click event (for one) to put the lines of the envelope.

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

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 32
Default Printing Names & addresses on Envelopes - how?

On Thu, 5 Apr 2012 13:11:45 +0100, "Chris" wrote:


"Martin ©¿©¬" wrote in message
.. .
Hi
I haved a spreadsheet with names, addresses, postcode etc that I
usually print onto labels using Word & then stick on envelopes.
Is it possible to print directly onto envelopes?
If so how would I go about that?
Thank you
--
Martin
©¿©¬


Mail Merge in Word has the option to generate envelopes

Hi Chris
I have tried that, however, after I have chosen my recipients from my
existing list and then went to merge field, the details were all
gobble-de-gook
That was yesterday, today following your reply I tried again with a
different recepients list & it worked fine hiphip!!
So my original receipients list must be faulty
--
Regards
Martin
©¿©¬
  #5   Report Post  
Banned
 
Posts: 2
Default

Quote:
Originally Posted by Martin ©¿©¬[_2_] View Post
On Thu, 5 Apr 2012 13:11:45 +0100, "Chris" wrote:


"Martin ©¿©¬" wrote in message
.. .
Hi
I haved a spreadsheet with names, addresses, postcode etc that I
usually print onto labels using Word & then stick on envelopes.
Is it possible to print directly onto envelopes?
If so how would I go about that?
Thank you
--
Martin
©¿©¬


Mail Merge in Word has the option to generate envelopes

Hi Chris
I have tried that, however, after I have chosen my recipients from my
existing list and then went to merge field, the details were all
gobble-de-gook
That was yesterday, today following your reply I tried again with a
different recepients list & it worked fine hiphip!!
So my original receipients list must be faulty
--
Regards
Martin
©¿©¬
YEAH sometimes the printer settings are not adjusted to length or size of print.
Designer,
http://www.trademeters.com/ Point Of Sale Software
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 I CREATE LABELS OR ADDRESSES ON ENVELOPES ANN Excel Discussion (Misc queries) 3 July 6th 08 08:57 PM
print addresses onto envelopes in excel neil in cornwall Excel Discussion (Misc queries) 2 May 31st 07 12:10 PM
How do I print addresses onto envelopes from excel? Megan Excel Discussion (Misc queries) 2 November 25th 06 01:17 PM
Printing labels from names and addresses in an excel jimtmcdaniels Excel Programming 1 July 2nd 06 08:58 AM
HOW DO I CREATE LABELS OR ADDRESSES ON ENVELOPES ANN Excel Discussion (Misc queries) 5 December 12th 04 12:03 AM


All times are GMT +1. The time now is 01:19 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"