+ Reply to Thread
Results 1 to 9 of 9

Print a small range at the top of the page

Hybrid View

  1. #1
    Forum Contributor MariaPap's Avatar
    Join Date
    10-19-2013
    Location
    Chania-Crete-Greece
    MS-Off Ver
    Excel 2003-2010
    Posts
    319

    Print a small range at the top of the page

    Hello

    i have this code to print an area.

    Dim LR As Long
        LR = Sheets("13").Range("bq" & Rows.Count).End(xlUp).row
        Dim rng As Range
        Set rng = Sheets("13").Range("bo1:bs" & LR)
        rng.PrintOut
    What i need is in the top of the page, renge BK11:BK12, TO BE PRINTED also.

    Any idea?

  2. #2
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: Print a small range at the top of the page

    Try something like this...

        With Sheets("13")
            .PageSetup.CenterHeader = .Range("BK11").Value & " " & .Range("BK12").Value
            .Range("BO1:BS" & .Range("BQ" & Rows.Count).End(xlUp).Row).PrintOut
        End With
    Surround your VBA code with CODE tags e.g.;
    [CODE]your VBA code here[/CODE]
    The # button in the forum editor will apply CODE tags around your selected text.

  3. #3
    Forum Contributor MariaPap's Avatar
    Join Date
    10-19-2013
    Location
    Chania-Crete-Greece
    MS-Off Ver
    Excel 2003-2010
    Posts
    319

    Re: Print a small range at the top of the page

    Hi

    Thank you for your suggestion. Unfortunately i can not test it as i have no printer at home(Saturday noon here!). I'll try it on Monday morning and let you know.

    Thanks again.

  4. #4
    Registered User
    Join Date
    06-25-2013
    Location
    San Diego, CA
    MS-Off Ver
    Excel 2010
    Posts
    51

    Re: Print a small range at the top of the page

    I think you could also go to File/Page Setup/Sheets/Rows to repeat at top. It's not VBA, but, IIRC, you do that once and never have to do it again (For that sheet.)

  5. #5
    Forum Contributor MariaPap's Avatar
    Join Date
    10-19-2013
    Location
    Chania-Crete-Greece
    MS-Off Ver
    Excel 2003-2010
    Posts
    319

    Re: Print a small range at the top of the page

    @ klvaughnsd

    Thanks for your suggestion but in that particular sheet i have more than 20 different print ranges, so will be difficult to use this.

    @ AlphaFrog

    Thank you. This works great. I'll mark thread as solved but can you pls tell me:

    1) If i want range BK11:BK12 to be printed at the right side of the report will i use this?

     ..PageSetup.RightHeader
    2) Range BK11:BK12 is bolded and have a border arount but these are not printed. Can we do something for that?

    Again thank you very much!

  6. #6
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: Print a small range at the top of the page

    It may be better for you to...
    • add a new blank "Report" worksheet
    • Copy BK11:BK12 to cells A1:A2 with the formatting
    • Copy .Range("BO1:BS" & .Range("BQ" & Rows.Count).End(xlUp).Row) to A3 w/formatting
    • Format anything else you want
    • Print the new formatted Report sheet and then delete it.

  7. #7
    Forum Contributor MariaPap's Avatar
    Join Date
    10-19-2013
    Location
    Chania-Crete-Greece
    MS-Off Ver
    Excel 2003-2010
    Posts
    319

    Re: Print a small range at the top of the page

    Thank you.

    Hoping that i understand well your suggestion, i like to say that(us i understand) this is something that i have to do manually eatch time.

    But i need to print more than 20 such reports per day, so it will be real hard to do this for eatch one.

  8. #8
    Forum Guru
    Join Date
    07-25-2011
    Location
    Florida
    MS-Off Ver
    Excel 2003
    Posts
    9,653

    Re: Print a small range at the top of the page

    Since you were writing a macro before, I assumed you could do it this new way with a macro as well. You could a least record the steps to create and print one report then modify the recording.

  9. #9
    Forum Contributor MariaPap's Avatar
    Join Date
    10-19-2013
    Location
    Chania-Crete-Greece
    MS-Off Ver
    Excel 2003-2010
    Posts
    319

    Re: Print a small range at the top of the page

    Thank you.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] To print the selected range with page setup
    By muralidaran in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-16-2014, 10:38 AM
  2. Set Print range to max that will fit on a page
    By caliskier in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-03-2014, 08:08 PM
  3. Excel 2010 - Custom Macro that scales a print range to fill the page
    By barnett2000 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 09-11-2013, 04:53 PM
  4. Code to select a range and set it as the print range onto one page
    By rlsublime in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-10-2011, 03:37 PM
  5. [SOLVED] Can you get the range reference for each page in a worksheet print range?
    By Crosby in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 04-12-2005, 02:06 PM

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