Conditional Formatting to find Top 3 Values in Multiple Columns

Anonymity21

New Member
Joined
Apr 28, 2016
Messages
3
Good afternoon everyone! I have a spreadsheet that I'm trying to conditionally format to display the top 3 values in each column (not including the value of 1). I believe I have to use an AND(LARGE()) type function, but I can't seem to get it to work. Any ideas?
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
If you don't have dups this might work:

Unknown
Row\Col
A
B
C
1
1​
2​
3​
2
3​
4​
5​
3
14​
6​
25​
4
4​
5​
6​
5
11​
1​
7​
6
9​
10​
11​
7
8​
9​
10​
Sheet: Sheet1


Select all the range and in the CF put the following:


=IF(A1<>1,OR(A1=LARGE(A$1:A$7,1),A1=LARGE(A$1:A$7,2),A1=LARGE(A$1:A$7,3)))

<tbody>
</tbody>
 
Upvote 0
What is the expected (desired) outcome with this data sample


A
1
0,8​
2
0,5​
3
0,1​
4
0,2​
5
1​
6
0,3​
7
1​

<tbody>
</tbody>


Option 1

A
1
0,8​
2
0,5​
3
0,1​
4
0,2​
5
1​
6
0,3​
7
1​

<tbody>
</tbody>



Option 2 (disregard the 1s to get the third Large)

A
1
0,8​
2
0,5​
3
0,1​
4
0,2​
5
1​
6
0,3​
7
1​

<tbody>
</tbody>


Please, clarify.

M.
 
Upvote 0

Forum statistics

Threads
1,221,526
Messages
6,160,340
Members
451,637
Latest member
hvp2262

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top