Closed Thread
Results 1 to 2 of 2

Print single line from mailing list

  1. #1
    Registered User
    Join Date
    10-01-2011
    Location
    Texas
    MS-Off Ver
    Excel 2003
    Posts
    8

    Print single line from mailing list

    Please forgive me for double posting. I realized after I had posted my question that it was in the wrong place.

    I have a mailing list and I want to print one line at a time with a "To" in front of it.
    Here's my macro, as far as I could go.

    Sub Macro2()
    '
    ' Macro2 Macro
    'Macro recorded 10/1/2011 by Ronald
    '

    '

    ActiveSheet.PageSetup.PrintArea = "$B$1:$D$18"
    Range("B4").Select
    For x = 1 To 2
    ActiveCell.FormulaR1C1 = "TO:"
    With Selection.Font
    .Name = "Abadi MT Condensed Extra Bold"
    .Size = 18
    .Strikethrough = False
    .Superscript = False
    .Subscript = False
    .OutlineFont = False
    .Shadow = False
    .Underline = xlUnderlineStyleNone
    .ColorIndex = xlAutomatic
    End With
    With Selection
    .HorizontalAlignment = xlCenter
    .VerticalAlignment = xlBottom
    .WrapText = False
    .Orientation = 0
    .AddIndent = False
    End With
    ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
    Selection.ClearContents
    ActiveCell.Offset(1, 0).Select
    Next x
    End Sub

  2. #2
    Forum Expert ConneXionLost's Avatar
    Join Date
    03-11-2009
    Location
    Victoria, Canada
    MS-Off Ver
    2010
    Posts
    2,952

    Re: Print single line from mailing list

    This is a duplicate post and as such does not comply with Rule 5 of our forum rules. This thread will now be closed, you may continue in your other thread.

    Thread Closed.
    Would you like to say thanks? Please click the: " Add Reputation" button, on the grey bar below the post.

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1