jamierobinson
MIS
I have the following macro that inserts the filename into the left footer of an excel spread sheet. How do I change the font size to 8 point?
Sub InsertFooter()
Dim myString As String
myString = ActiveWorkbook.FullName & "\" & "&a" & " - " _
& "&d" & ">" & "&t"
For Each sht In ActiveWorkbook.Sheets
sht.PageSetup.LeftFooter = myString
Next sht
End Sub
Thanks
-jamie
Sub InsertFooter()
Dim myString As String
myString = ActiveWorkbook.FullName & "\" & "&a" & " - " _
& "&d" & ">" & "&t"
For Each sht In ActiveWorkbook.Sheets
sht.PageSetup.LeftFooter = myString
Next sht
End Sub
Thanks
-jamie