Private Sub Workbook_BeforePrint(Cancel As Boolean)
With ActiveSheet.PageSetup
.CenterFooter = "Location: " & Range("X5").Value
End With
End Sub
With ActiveSheet.PageSetup
.CenterFooter = "Location: " & ActiveCell.FormulaR1C1 = "=Property!R[-11]C[-14]"
End With
Record yourself a macro of the process of inserting and formatting the footer. In the recorded macro you will see the formatting codes .
Artik
VBA Code:.CenterFooter = " &""Tahoma,Bold"" " & Range("X5").Value
Artik
Once again Artik - thank you. That did what I have in mind. I added one item to increase the font size. It appears to be working.VBA Code:.CenterFooter = " &""Tahoma,Bold"" " & Range("X5").Value
Artik