RichardMGreen
Well-known Member
- Joined
- Feb 20, 2006
- Messages
- 2,177
Hi all
I want to add a custom cell footer to several tabs in a worksheet and I need it to be the contents of a cell.
I've found some code to add the footer to the bottom of the active sheet but I wondered if it was possible to add it to the entire workbook with doing each sheet individually.
The code I've found is here:-
(I've updated it to reference the cell I want).
So, is it possible to apply this to an entire workbook at once?
I want to add a custom cell footer to several tabs in a worksheet and I need it to be the contents of a cell.
I've found some code to add the footer to the bottom of the active sheet but I wondered if it was possible to add it to the entire workbook with doing each sheet individually.
The code I've found is here:-
Code:
ActiveSheet.PageSetup.LeftHeader = "Data Extraction Date " & Sheets("Query_List").Range("H18").Value
So, is it possible to apply this to an entire workbook at once?