I am trying to make a footer say what is in a cell on a different page and make the font size 8. When I run my macro nothing happens and I can't figure out why...
Code:
Sub Font()
'
' font Macro
'
'
Sheets("Market Overview").Select
Dim strFtr As String
strFtr = Sheets("Inputs").Range("A6") & " Report"
With ActiveSheet.PageSetup.RightFooter = "&8strFtr"
End With
End Sub
Code:
Sub Font()
'
' font Macro
'
'
Sheets("Market Overview").Select
Dim strFtr As String
strFtr = Sheets("Inputs").Range("A6") & " Report"
With ActiveSheet.PageSetup.RightFooter = "&8strFtr"
End With
End Sub