Skip to content

Commit 98ff88c

Browse files
committedJan 29, 2024
Std Install Update
1 parent 0a917a5 commit 98ff88c

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed
 

‎VBA/Excel/Guidebook/Standard-Install.vba

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
'This is a group of Macros that I install as standard to give extra functionality in Excel. They can be found at other points in this guide, but it's useful to have a single place where I can just cut and paste them in
2-
'Readability isn't as important here and there is no need for explainations as such - hence these will be compacted and explained elsewhere.
1+
'This is a group of Macros that I install as standard to give extra functionality in Excel. They can be found at other points in this guide, but it's useful to have a single place where I can just cut and paste them in. Readability isn't as important here and there is no need for explainations as such - hence these will be compacted and explained elsewhere.
32
Sub Unhide_All_Sheets()
43
Application.ScreenUpdating = False
54
Dim wks As Worksheet
@@ -87,4 +86,10 @@ Sub FinanceReview()
8786
Range("I2:M2").FormulaR1C1 = Array("=SUM(C[-7])", "=SUM(C[-7])", "=SUM(C[-7])", "=SUM(C[-7])", "=SUM(RC[-4]:RC[-1])")
8887
Range("A2").Select
8988
End Sub
90-
89+
Sub ResetAppAlerts()
90+
Application.DisplayAlerts = True
91+
Application.EnableEvents = True
92+
Application.DisplayStatusBar = True
93+
Application.ScreenUpdating = True
94+
Application.Calculation = xlAutomatic
95+
End Sub

0 commit comments

Comments
 (0)
Please sign in to comment.