I would like to create a custom left footer using info in a cell... Using Cell C1 on each individual sheet. I do not want a macro that I have to run myself, but code that will update every time I go to print it. You may find it helpful to sometime place the contents of a cell into the footer of a worksheet, and to have the footer updated every time the contents of the cell changed. The easiest way to do this is with a macro. The following is an example of a macro that will place the contents of cell A1 into the left side of the footer: Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) ActiveSheet.PageSetup.LeftFooter = Range("A1").Text End Sub The macro is run every time Excel does its normal recalculation—meaning every time the contents of any cell changes or someone presses F9. If you want the contents to be in a different part of the footer, you can change LeftFooter to CenterFooter, or RightFooter. To apply any formatting to the footer other than the ...
Know You,Know Me! The World is Ours,You need Know it!