+ Reply to Thread
Results 1 to 3 of 3

Placing Logos in Printed Pages

  1. #1
    Registered User
    Join Date
    03-23-2006
    Location
    UK
    Posts
    7

    Placing Logos in Printed Pages

    I'm using a macro to format information on a sheet which has variable number of columns and rows. I've also set the left 3 columns to repeat on each page as well as the top 6 rows which produces the output I need but my client also needs a logo on the top right corner of each page. I can place the logo on the first print area page but when printing multiple pages from one sheet (as many as 6 A4 pages) the logo only appears on the first page and none of the subsequent pages.

    Any ideas how the logo can be incorporated in the repeating header area?

    Many thanks for any responses.

    Dai

  2. #2
    Registered User
    Join Date
    03-23-2006
    Location
    UK
    Posts
    7
    Quote Originally Posted by dai50
    I'm using a macro to format information on a sheet which has variable number of columns and rows. I've also set the left 3 columns to repeat on each page as well as the top 6 rows which produces the output I need but my client also needs a logo on the top right corner of each page. I can place the logo on the first print area page but when printing multiple pages from one sheet (as many as 6 A4 pages) the logo only appears on the first page and none of the subsequent pages.

    Any ideas how the logo can be incorporated in the repeating header area?

    Many thanks for any responses.

    Dai
    After posting this message I discovered that I could insert a picture into the page header. This provides a solution to my problem but would prefer a VBA solution for better control.

    Dai

  3. #3
    Registered User
    Join Date
    03-23-2006
    Location
    UK
    Posts
    7

    Smile

    Quote Originally Posted by dai50
    After posting this message I discovered that I could insert a picture into the page header. This provides a solution to my problem but would prefer a VBA solution for better control.

    Dai
    Its amazing how working with a problem clears the mind. I now have a macro which writes to the page header and stuffs the logo into the title area. Just needed define the logo:

    #
    ActiveSheet.PageSetup.RightHeaderPicture.Filename = "C:\DATA\LOGO.JPG"
    .
    .
    .
    With ActiveSheet.PageSetup
    .RightHeader = "&G"
    .
    #

    The &G refers to the picture and prints fine.

    Dai

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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