Hi
depending on your Excel version you need VBA for doing this. Put the
following code in your workbook module:
Private Sub Workbook_BeforePrint(Cancel As Boolean)
Dim wkSht As Worksheet
For Each wkSht In Me.Worksheets
With wkSht.PageSetup
.CenterFooter = Me.FullName
End With
Next wkSht
End Sub
Hi
try the following:
- open the VBA editor (hit ALT + F11)
- locate the entry 'thisWorkbook' in the left explorer window
- double click on this entry
- paste the code in the appearing editor window
- close the VBA editor
- save the workbook
Try it (e.g. open the print preview)