-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmonitoring sheet.bas
More file actions
224 lines (209 loc) · 9.84 KB
/
monitoring sheet.bas
File metadata and controls
224 lines (209 loc) · 9.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
Attribute VB_Name = "Module1"
Public Sub All() 'shortcut key shift+ctrl+A
Attribute All.VB_Description = "Make All Sheets and Update buttons visible"
Attribute All.VB_ProcData.VB_Invoke_Func = "A\n14"
Application.ScreenUpdating = False
Sheet1.Visible = xlSheetVisible
Sheet2.Visible = xlSheetVisible
Sheet3.Visible = xlSheetVisible
Sheet4.Visible = xlSheetVisible
Sheet5.Visible = xlSheetVisible
Sheet6.Visible = xlSheetVisible
Sheet7.Visible = xlSheetVisible
Sheet8.Visible = xlSheetVisible
Sheet9.Visible = xlSheetVisible
Sheet10.Visible = xlSheetVisible
Sheet11.Visible = xlSheetVisible
Sheet12.Visible = xlSheetVisible
Sheet1.janupdate.Visible = True
Sheet2.febupdate.Visible = True
Sheet3.marupdate.Visible = True
Sheet4.aprupdate.Visible = True
Sheet5.mayupdate.Visible = True
Sheet6.junupdate.Visible = True
Sheet7.julupdate.Visible = True
Sheet8.augupdate.Visible = True
Sheet9.septupdate.Visible = True
Sheet10.octupdate.Visible = True
Sheet11.novupdate.Visible = True
Sheet12.decupdate.Visible = True
Sheet1.jancleanse.Visible = True
Sheet2.febcleanse.Visible = True
Sheet3.marcleanse.Visible = True
Sheet4.aprcleanse.Visible = True
Sheet5.maycleanse.Visible = True
Sheet6.juncleanse.Visible = True
Sheet7.julcleanse.Visible = True
Sheet8.augcleanse.Visible = True
Sheet9.septcleanse.Visible = True
Sheet10.octcleanse.Visible = True
Sheet11.novcleanse.Visible = True
Sheet12.decleanse.Visible = True
Application.ScreenUpdating = True
End Sub
Public Sub HighlightChange() 'shortcut key shift+ctrl+H
Attribute HighlightChange.VB_Description = "Highlight changes"
Attribute HighlightChange.VB_ProcData.VB_Invoke_Func = "H\n14"
Dim a As Integer, b As Integer, c As Integer, d As Integer
Application.ScreenUpdating = False
For a = 4 To 43
If ActiveSheet.Cells(a, 5) <> "" And ActiveSheet.Cells(a, 5).Value < ActiveSheet.Cells(a, 4).Value Then
ActiveSheet.Cells(a, 3).Font.Color = vbRed
End If
If ActiveSheet.Cells(a, 5) <> "" And ActiveSheet.Cells(a, 5).Value > ActiveSheet.Cells(a, 4).Value Then
ActiveSheet.Cells(a, 3).Font.Color = vbGreen
End If
If ActiveSheet.Cells(a, 5).Value = ActiveSheet.Cells(a, 4).Value Then
ActiveSheet.Cells(a, 3).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(a, 8) <> "" And ActiveSheet.Cells(a, 8).Value < ActiveSheet.Cells(a, 7).Value Then
ActiveSheet.Cells(a, 6).Font.Color = vbRed
End If
If ActiveSheet.Cells(a, 8) <> "" And ActiveSheet.Cells(a, 8).Value > ActiveSheet.Cells(a, 7).Value Then
ActiveSheet.Cells(a, 6).Font.Color = vbGreen
End If
If ActiveSheet.Cells(a, 8).Value = ActiveSheet.Cells(a, 7).Value Then
ActiveSheet.Cells(a, 6).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(a, 11) <> "" And ActiveSheet.Cells(a, 11).Value < ActiveSheet.Cells(a, 10).Value Then
ActiveSheet.Cells(a, 9).Font.Color = vbRed
End If
If ActiveSheet.Cells(a, 11) <> "" And ActiveSheet.Cells(a, 11).Value > ActiveSheet.Cells(a, 10).Value Then
ActiveSheet.Cells(a, 9).Font.Color = vbGreen
End If
If ActiveSheet.Cells(a, 11).Value = ActiveSheet.Cells(a, 10).Value Then
ActiveSheet.Cells(a, 9).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(a, 14) <> "" And ActiveSheet.Cells(a, 14).Value < ActiveSheet.Cells(a, 13).Value Then
ActiveSheet.Cells(a, 12).Font.Color = vbRed
End If
If ActiveSheet.Cells(a, 14) <> "" And ActiveSheet.Cells(a, 14).Value > ActiveSheet.Cells(a, 13).Value Then
ActiveSheet.Cells(a, 12).Font.Color = vbGreen
End If
If ActiveSheet.Cells(a, 14).Value = ActiveSheet.Cells(a, 13).Value Then
ActiveSheet.Cells(a, 12).Font.ColorIndex = xlColorIndexAutomatic
End If
Next a
Application.ScreenUpdating = False
For b = 46 To 81
If ActiveSheet.Cells(b, 5) <> "" And ActiveSheet.Cells(b, 5).Value < ActiveSheet.Cells(b, 4).Value Then
ActiveSheet.Cells(b, 3).Font.Color = vbRed
End If
If ActiveSheet.Cells(b, 5) <> "" And ActiveSheet.Cells(b, 5).Value > ActiveSheet.Cells(b, 4).Value Then
ActiveSheet.Cells(b, 3).Font.Color = vbGreen
End If
If ActiveSheet.Cells(b, 5).Value = ActiveSheet.Cells(b, 4).Value Then
ActiveSheet.Cells(b, 3).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(b, 8) <> "" And ActiveSheet.Cells(b, 8).Value < ActiveSheet.Cells(a, 7).Value Then
ActiveSheet.Cells(b, 6).Font.Color = vbRed
End If
If ActiveSheet.Cells(b, 8) <> "" And ActiveSheet.Cells(b, 8).Value > ActiveSheet.Cells(b, 7).Value Then
ActiveSheet.Cells(b, 6).Font.Color = vbGreen
End If
If ActiveSheet.Cells(b, 8).Value = ActiveSheet.Cells(b, 7).Value Then
ActiveSheet.Cells(b, 6).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(b, 11) <> "" And ActiveSheet.Cells(b, 11).Value < ActiveSheet.Cells(b, 10).Value Then
ActiveSheet.Cells(b, 9).Font.Color = vbRed
End If
If ActiveSheet.Cells(b, 11) <> "" And ActiveSheet.Cells(b, 11).Value > ActiveSheet.Cells(b, 10).Value Then
ActiveSheet.Cells(b, 9).Font.Color = vbGreen
End If
If ActiveSheet.Cells(b, 11).Value = ActiveSheet.Cells(b, 10).Value Then
ActiveSheet.Cells(b, 9).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(b, 14) <> "" And ActiveSheet.Cells(b, 14).Value < ActiveSheet.Cells(b, 13).Value Then
ActiveSheet.Cells(b, 12).Font.Color = vbRed
End If
If ActiveSheet.Cells(b, 14) <> "" And ActiveSheet.Cells(b, 14).Value > ActiveSheet.Cells(b, 13).Value Then
ActiveSheet.Cells(b, 12).Font.Color = vbGreen
End If
If ActiveSheet.Cells(b, 14).Value = ActiveSheet.Cells(b, 13).Value Then
ActiveSheet.Cells(b, 12).Font.ColorIndex = xlColorIndexAutomatic
End If
Next b
Application.ScreenUpdating = False
For c = 84 To 123
If ActiveSheet.Cells(c, 5) <> "" And ActiveSheet.Cells(c, 5).Value < ActiveSheet.Cells(c, 4).Value Then
ActiveSheet.Cells(c, 3).Font.Color = vbRed
End If
If ActiveSheet.Cells(c, 5) <> "" And ActiveSheet.Cells(c, 5).Value > ActiveSheet.Cells(c, 4).Value Then
ActiveSheet.Cells(c, 3).Font.Color = vbGreen
End If
If ActiveSheet.Cells(c, 5).Value = ActiveSheet.Cells(c, 4).Value Then
ActiveSheet.Cells(c, 3).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(c, 8) <> "" And ActiveSheet.Cells(c, 8).Value < ActiveSheet.Cells(c, 7).Value Then
ActiveSheet.Cells(c, 6).Font.Color = vbRed
End If
If ActiveSheet.Cells(c, 8) <> "" And ActiveSheet.Cells(c, 8).Value > ActiveSheet.Cells(c, 7).Value Then
ActiveSheet.Cells(c, 6).Font.Color = vbGreen
End If
If ActiveSheet.Cells(c, 8).Value = ActiveSheet.Cells(c, 7).Value Then
ActiveSheet.Cells(c, 6).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(c, 11) <> "" And ActiveSheet.Cells(c, 11).Value < ActiveSheet.Cells(c, 10).Value Then
ActiveSheet.Cells(c, 9).Font.Color = vbRed
End If
If ActiveSheet.Cells(c, 11) <> "" And ActiveSheet.Cells(c, 11).Value > ActiveSheet.Cells(c, 10).Value Then
ActiveSheet.Cells(c, 9).Font.Color = vbGreen
End If
If ActiveSheet.Cells(c, 11).Value = ActiveSheet.Cells(c, 10).Value Then
ActiveSheet.Cells(c, 9).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(c, 14) <> "" And ActiveSheet.Cells(c, 14).Value < ActiveSheet.Cells(c, 13).Value Then
ActiveSheet.Cells(c, 12).Font.Color = vbRed
End If
If ActiveSheet.Cells(c, 14) <> "" And ActiveSheet.Cells(c, 14).Value > ActiveSheet.Cells(c, 13).Value Then
ActiveSheet.Cells(c, 12).Font.Color = vbGreen
End If
If ActiveSheet.Cells(c, 14).Value = ActiveSheet.Cells(c, 13).Value Then
ActiveSheet.Cells(c, 12).Font.ColorIndex = xlColorIndexAutomatic
End If
Next c
Application.ScreenUpdating = False
For d = 126 To 163
If ActiveSheet.Cells(d, 5) <> "" And ActiveSheet.Cells(d, 5).Value < ActiveSheet.Cells(d, 4).Value Then
ActiveSheet.Cells(d, 3).Font.Color = vbRed
End If
If ActiveSheet.Cells(d, 5) <> "" And ActiveSheet.Cells(d, 5).Value > ActiveSheet.Cells(d, 4).Value Then
ActiveSheet.Cells(d, 3).Font.Color = vbGreen
End If
If ActiveSheet.Cells(d, 5).Value = ActiveSheet.Cells(d, 4).Value Then
ActiveSheet.Cells(d, 3).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(d, 8) <> "" And ActiveSheet.Cells(d, 8).Value < ActiveSheet.Cells(d, 7).Value Then
ActiveSheet.Cells(d, 6).Font.Color = vbRed
End If
If ActiveSheet.Cells(d, 8) <> "" And ActiveSheet.Cells(d, 8).Value > ActiveSheet.Cells(d, 7).Value Then
ActiveSheet.Cells(d, 6).Font.Color = vbGreen
End If
If ActiveSheet.Cells(d, 8).Value = ActiveSheet.Cells(d, 7).Value Then
ActiveSheet.Cells(d, 6).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(d, 11) <> "" And ActiveSheet.Cells(d, 11).Value < ActiveSheet.Cells(d, 10).Value Then
ActiveSheet.Cells(d, 9).Font.Color = vbRed
End If
If ActiveSheet.Cells(d, 11) <> "" And ActiveSheet.Cells(d, 11).Value > ActiveSheet.Cells(d, 10).Value Then
ActiveSheet.Cells(d, 9).Font.Color = vbGreen
End If
If ActiveSheet.Cells(d, 11).Value = ActiveSheet.Cells(d, 10).Value Then
ActiveSheet.Cells(d, 9).Font.ColorIndex = xlColorIndexAutomatic
End If
If ActiveSheet.Cells(d, 14) <> "" And ActiveSheet.Cells(d, 14).Value < ActiveSheet.Cells(d, 13).Value Then
ActiveSheet.Cells(d, 12).Font.Color = vbRed
End If
If ActiveSheet.Cells(d, 14) <> "" And ActiveSheet.Cells(d, 14).Value > ActiveSheet.Cells(d, 13).Value Then
ActiveSheet.Cells(d, 12).Font.Color = vbGreen
End If
If ActiveSheet.Cells(d, 14).Value = ActiveSheet.Cells(d, 13).Value Then
ActiveSheet.Cells(d, 12).Font.ColorIndex = xlColorIndexAutomatic
End If
Next d
Application.ScreenUpdating = True
End Sub
Public Sub RemoveHighlights() 'shortcut key = shift+ctrl=R
Attribute RemoveHighlights.VB_ProcData.VB_Invoke_Func = "R\n14"
ActiveSheet.UsedRange.Font.ColorIndex = xlColorIndexAutomatic
End Sub