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:
|
Sub BenchmarksFormatting(rg As Range)
Dim Target As Range
Dim FillColors As Variant, v As Variant
FillColors = Array(38, 40, 36, 35, 37)
With rg.Worksheet
For Each Target In rg.Cells
If Target <> "" And IsNumeric(Target) Then
If Not Intersect(Target, .Range("C4:C41")) Is Nothing Then
v = Application.Match(Target, Array(0, 40, 50, 60, 70), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("E4:E41")) Is Nothing Then
v = Application.Match(Target, Array(0, 7.5, 8, 12, 17), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("F4:F41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("G4:G41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("H4:H41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("I4:I41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("K4:K41")) Is Nothing Then
v = Application.Match(Target, Array(0, 40, 50, 60, 70), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("M4:M41")) Is Nothing Then
v = Application.Match(Target, Array(0, 7.5, 8, 12, 17), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("N4:N41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("O4:O41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("P4:P41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("Q4:Q41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("S4:S41")) Is Nothing Then
v = Application.Match(Target, Array(0, 40, 50, 60, 70), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("U4:U41")) Is Nothing Then
v = Application.Match(Target, Array(0, 7.5, 8, 12, 17), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("V4:V41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("W4:W41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("X4:X41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
If Not Intersect(Target, .Range("Y4:Y41")) Is Nothing Then
v = Application.Match(Target, Array(0, 25, 50, 75, 90), 1)
If Not IsError(v) Then
Target.Interior.ColorIndex = FillColors(v - 1)
End If
End If
End If
Next
End With
End Sub
|