+ Reply to Thread
Results 1 to 2 of 2

Link footer of one file to cells in another file

  1. #1
    Laura
    Guest

    Link footer of one file to cells in another file

    Is this possible?

  2. #2
    Dave Peterson
    Guest

    Re: Link footer of one file to cells in another file

    Only via code...

    Option Explicit
    Private Sub Workbook_BeforePrint(Cancel As Boolean)
    With Me.Worksheets("sheet1")
    .PageSetup.CenterFooter = .Range("a1").Text
    End With
    End Sub

    If you're new to macros, you may want to read David McRitchie's intro at:
    http://www.mvps.org/dmcritchie/excel/getstarted.htm

    If you want to read more about these kinds of events:

    Chip Pearson's site:
    http://www.cpearson.com/excel/events.htm

    David McRitchie's site:
    http://www.mvps.org/dmcritchie/excel/event.htm


    Laura wrote:
    >
    > Is this possible?


    --

    Dave Peterson

+ 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