Hi,
I am trying to find the top 3 numbers in a cell range and then the lowest number but it seems it's not working to get the lowest number or sometimes it's changing the condition formatting for the full range. Like if the cell value is 0 then it will be considered as the lowest number and marked as BLACK but if somehow the cell value is blank then it's still marked as BLACK.
I would appreciate it if someone could help me here no matter if you want to change the color of the blank value to some other color.
Please also note that I will be copying the same condition formatting for the other 3000 records (each record has 50 entries as shown below screenshot (1 record of 50 entries)
All cells will have numeric values only.
I am trying to find the top 3 numbers in a cell range and then the lowest number but it seems it's not working to get the lowest number or sometimes it's changing the condition formatting for the full range. Like if the cell value is 0 then it will be considered as the lowest number and marked as BLACK but if somehow the cell value is blank then it's still marked as BLACK.
I would appreciate it if someone could help me here no matter if you want to change the color of the blank value to some other color.
Please also note that I will be copying the same condition formatting for the other 3000 records (each record has 50 entries as shown below screenshot (1 record of 50 entries)
All cells will have numeric values only.
Election 2024.xlsx | ||||
---|---|---|---|---|
L | M | |||
2 | 10 | 0.00% | ||
3 | 20 | 0.00% | ||
4 | 30 | 0.01% | ||
5 | 40 | 0.01% | ||
6 | 50 | 0.01% | ||
7 | 60 | 0.01% | ||
8 | 70 | 0.02% | ||
9 | 80 | 0.02% | ||
10 | 90 | 0.02% | ||
11 | 90 | 0.02% | ||
12 | 90 | 0.02% | ||
13 | 90 | 0.02% | ||
14 | 90 | 0.02% | ||
15 | 3 | 0.00% | ||
16 | 1 | 0.00% | ||
17 | 90 | 0.02% | ||
18 | 0 | 0.00% | ||
19 | 90 | 0.02% | ||
20 | 90 | 0.02% | ||
21 | 90 | 0.02% | ||
22 | 90 | 0.02% | ||
23 | 3 | 0.00% | ||
24 | 6 | 0.00% | ||
25 | 1 | 0.00% | ||
26 | 90 | 0.02% | ||
27 | 90 | 0.02% | ||
28 | 90 | 0.02% | ||
29 | 90 | 0.02% | ||
30 | 90 | 0.02% | ||
31 | 100 | 0.02% | ||
32 | 200 | 0.05% | ||
33 | 300 | 0.07% | ||
34 | 400 | 0.09% | ||
35 | 500 | 0.11% | ||
36 | 111,000 | 25.39% | ||
37 | 122,000 | 27.90% | ||
38 | 133,000 | 30.42% | ||
39 | 5 | 0.00% | ||
40 | 1,000 | 0.23% | ||
41 | 2,000 | 0.46% | ||
42 | ||||
43 | 4,000 | 0.91% | ||
44 | 5,000 | 1.14% | ||
45 | 6,000 | 1.37% | ||
46 | ||||
47 | 8,000 | 1.83% | ||
48 | 9,000 | 2.06% | ||
49 | 10,000 | 2.29% | ||
50 | 11,000 | 2.52% | ||
51 | 12,000 | 2.74% | ||
Election 2022 (MNA) |
Cell Formulas | ||
---|---|---|
Range | Formula | |
M2:M51 | M2 | =IF(L2="","",L2/$H$2) |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
L2:L51 | Expression | =OR(L2=MIN(L$2:L$51)) | text | NO |
L2:L51 | Expression | =OR(L2=MAX(L$2:L$51),L2=LARGE(L$2:L$51,1)) | text | NO |
L2:L51 | Expression | =OR(L2=MAX(L$2:L$51),L2=LARGE(L$2:L$51,2)) | text | NO |
L2:L51 | Expression | =OR(L2=MAX(L$2:L$51),L2=LARGE(L$2:L$51,3)) | text | NO |
M2:M51 | Expression | =OR(M2=MIN(M$2:M$51)) | text | NO |
M2:M51 | Expression | =OR(M2=MAX(M$2:M$51),M2=LARGE(M$2:M$51,1)) | text | NO |
M2:M51 | Expression | =OR(M2=MAX(M$2:M$51),M2=LARGE(M$2:M$51,2)) | text | NO |
M2:M51 | Expression | =OR(M2=MAX(M$2:M$51),M2=LARGE(M$2:M$51,3)) | text | NO |
Last edited: