Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default print an envelope from my list of people on excell

From an Excel worksheet with a list of names and address, phone # and
emailaddresses, How can I just highlight the Name & Address and print a
single envelope??
dot cav
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default print an envelope from my list of people on excell

I have a sheet set up to work on MY laser printer to print a # 10 envelope.
right click the sheet with the namesview codeinsert thismodify to suit. I
then print from the envelope tab (could be automatic)

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

--
Don Guillett
SalesAid Software

"dotcav" wrote in message
...
From an Excel worksheet with a list of names and address, phone # and
emailaddresses, How can I just highlight the Name & Address and print a
single envelope??
dot cav



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 print a LIST of documents in a folder littlebear20 Excel Discussion (Misc queries) 2 August 16th 06 11:44 PM
Printing a list onto an envelope brocklang Excel Discussion (Misc queries) 1 August 4th 06 07:11 AM
excell won't print wants to save not print medic13 New Users to Excel 2 April 12th 06 05:52 PM
How do I print out a list of the tabs in an Excel workbook? Britomart Excel Discussion (Misc queries) 3 January 9th 06 06:21 AM
Macro to change validation list and print Andy Excel Discussion (Misc queries) 1 September 19th 05 01:42 PM


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