Footer

  • Thread starter Thread starter DD
  • Start date Start date
D

DD

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
___________ ______________ ____________
 
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)
 
Hi,

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

some text some text

_____________ _____________
 
Back
Top