Hello,
I have the following line of code in the Thisworkbook BeforePrint Event to print a footer.
It works for a sheet but if I select just a chart to print there is no footer, just the chart itself.
How can I make it printer a footer on the sheet of a chart?
(obviously not on the chart itself)
Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.LeftFooter = ActiveWorkbook.Name
End Sub
Thank you
Bookmarks