Hi
I have a workbook and a macro that im trying to auto run when I either open or close workbook. Ive tried it many times and it not doing it. Believe it something to do with me having to check in and out.
Any Ideas?
I have a workbook and a macro that im trying to auto run when I either open or close workbook. Ive tried it many times and it not doing it. Believe it something to do with me having to check in and out.
Any Ideas?
VBA Code:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
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