ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   MaxVal InCol "or" Compare Cells InCol Highlight Max (https://www.excelbanter.com/excel-programming/394042-maxval-incol-compare-cells-incol-highlight-max.html)

Addemup

MaxVal InCol "or" Compare Cells InCol Highlight Max
 
Hello all

I want to hold in memory the highest value in the column. Then I want to
compare that value with every cell in that column. I would like to be able to
flag those lower values or highlight them. Any help would be much
appreciated. Thank You.


'Dims

Set rng3 = Range(Range("H17"), Range("H77").End(xlUp))
Dim ifirst As Integer
ifirst = 0

For Each c3 In rng3
If ifirst = 0 Then
Masterc3 = c3
ifirst = 1
Else
varMasterc3 = Split(Masterc3, ".")
varComParec3 = Split(c3, ".")

''Get highest value in each split

If varMasterc3(1) varComParec3(1) Then
c3.Interior.ColorIndex = 24
Else
Masterc3 = c3
End If

Next
'If InStr(1, c3.Text, "1.3.0.0", vbTextCompare) = 0 And c3.Text <
"" Then
'c3.Interior.ColorIndex = 24
'End If

If CheckBox2.Value = False Then Call CLRColourRange2


All times are GMT +1. The time now is 09:10 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com