I know it something simple; I tried a few different ways
Code: Select all
Private Sub Worksheet_Activate()
ColorandBold 'Macro
Worksheets("Summary").ScrollArea = "A1:AM125"
End Sub
Code: Select all
Private Sub Worksheet_Activate()
ColorandBold 'Macro
Worksheets("Summary").ScrollArea = "A1:AM125"
End Sub
Code: Select all
Private Sub Worksheet_Activate()
ActiveSheet.Unprotect Password:=""
Call ColorandBold 'Macro
Worksheets("Summary").ScrollArea = "A1:AM125"
ActiveSheet.Protect DrawingObjects:=False, Contents:=True, Scenarios:=True, Password:=""
End Sub