I have list of scores in Column AK that I want to highlight in Red, the top for scores or equal.
I have the Conditional Format code below, but it only highlights the top 4 scores in total.
If the range list consists of scores:-
12
11
10
10
9
9
9
8
7
6
5
What I need is to highlight all the top 4 scores, or equal e.g. all 7 scores from 12 down to 9 inclusive.
Not just the top 4, which only goes down to 10.
Any help appreciated.
I have the Conditional Format code below, but it only highlights the top 4 scores in total.
Code:
Application.Goto Cells(Rows.Count, "AK").End(xlUp)
Range(Selection, Range("AK10")).Select
Selection.FormatConditions.Delete
Selection.FormatConditions.Add Type:=xlExpression, Formula1:= _
"=$AK10>=LARGE($AK$10:$AK$100,5)"
With Selection.FormatConditions(1).Font
.Bold = True
.Italic = False
.ColorIndex = 3
End With
If the range list consists of scores:-
12
11
10
10
9
9
9
8
7
6
5
What I need is to highlight all the top 4 scores, or equal e.g. all 7 scores from 12 down to 9 inclusive.
Not just the top 4, which only goes down to 10.
Any help appreciated.