i have following contents need to display in excel every page. anyway that
can fullfill the request.
I am using excel 2003
e.g contents

approval by hod approval owner approval
_________ ____________ ____________

audit aprroval implemented by reviewed by
___________ ______________ ____________

Re: Footer by Bob

Bob
Thu Mar 13 03:36:45 CDT 2008

Something like this

Private Sub Workbook_BeforePrint(Cancel As Boolean)

With ActiveSheet.PageSetup

.LeftFooter = "Some text"
.CenterFooter = "Some text"
.RightFooter = "Some text"
End With
End Sub

'This is workbook event code.
'To input this code, right click on the Excel icon on the worksheet
'(or next to the File menu if you maximise your workbooks),
'select View Code from the menu, and paste the code


--
---
HTH

Bob


(there's no email, no snail mail, but somewhere should be gmail in my addy)



"DD" <DD@discussions.microsoft.com> wrote in message
news:F123C677-D343-426E-BD60-B2C005725BE4@microsoft.com...
>i have following contents need to display in excel every page. anyway that
> can fullfill the request.
> I am using excel 2003
> e.g contents
>
> approval by hod approval owner approval
> _________ ____________ ____________
>
> audit aprroval implemented by reviewed by
> ___________ ______________ ____________



Re: Footer by DD

DD
Thu Mar 13 21:48:02 CDT 2008

Hi,

Can I have something like this with the line bottom for someone signature ?

some text some text

_____________ _____________



"Bob Phillips" wrote:

> Something like this
>
> Private Sub Workbook_BeforePrint(Cancel As Boolean)
>
> With ActiveSheet.PageSetup
>
> .LeftFooter = "Some text"
> .CenterFooter = "Some text"
> .RightFooter = "Some text"
> End With
> End Sub
>
> 'This is workbook event code.
> 'To input this code, right click on the Excel icon on the worksheet
> '(or next to the File menu if you maximise your workbooks),
> 'select View Code from the menu, and paste the code
>
>
> --
> ---
> HTH
>
> Bob
>
>
> (there's no email, no snail mail, but somewhere should be gmail in my addy)
>
>
>
> "DD" <DD@discussions.microsoft.com> wrote in message
> news:F123C677-D343-426E-BD60-B2C005725BE4@microsoft.com...
> >i have following contents need to display in excel every page. anyway that
> > can fullfill the request.
> > I am using excel 2003
> > e.g contents
> >
> > approval by hod approval owner approval
> > _________ ____________ ____________
> >
> > audit aprroval implemented by reviewed by
> > ___________ ______________ ____________
>
>
>