Hi
I have the following macro and trying to find out if it will automatically change the font and save it when the workbook closes and how do I do it for mutiple sheets in same workbook.
Private Sub Workbook_Close()
Cells.Select
With Selection.Font
.Name = "Daytona Condensed"
.FontStyle = "Regular"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
Range("A5308").Select
Selection.End(xlUp).Select
ActiveWindow.SmallScroll Down:=-6
End Sub
I have the following macro and trying to find out if it will automatically change the font and save it when the workbook closes and how do I do it for mutiple sheets in same workbook.
Private Sub Workbook_Close()
Cells.Select
With Selection.Font
.Name = "Daytona Condensed"
.FontStyle = "Regular"
.Size = 11
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.TintAndShade = 0
.ThemeFont = xlThemeFontNone
End With
Range("A5308").Select
Selection.End(xlUp).Select
ActiveWindow.SmallScroll Down:=-6
End Sub