CONDITIONAL FORMATING FOR CELL COLOUR AS PER VALUE LOWEST 1, LOWEST 2 & LOWEST 3

DEEPAK UBHE

New Member
Joined
Apr 16, 2014
Messages
14
Need help to formatting the cell as per their value in the series as lowest-1, lowest-2 & lowest 3
for example
A1=500, C1=400, E1=800, G1=350, I1=700
conditional formatting will be as below
  • being G1 is Lowest1 = Cell Color will be Green
  • being C1 is Lowest2 = Cell Color will be Yellow
  • being A1 is Lowest1 = Cell Color will be Pink
  • and E1 & I1 are not in range of L1 to L3 will not be formatted with any colour
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
may be like this:

from your examples write your values in the cell A1=500, C1=400, E1=800, G1=350, I1=700

and copy paste this formula across cell A2:I2
=IF(C1="","",IF(C1<400,"G",IF(C1=400,"Y",IF(AND(C1>400,C1<=500),"P",""))))

Select G1 and select Conditional Formatting>Manage rules>New Rules>Use a formula to determine which format a cells

paste the formula
=G2="G"

copy paste the formatting to another cells and edit the color
 
Upvote 0
How about
+Fluff 1.xlsm
ABCDEFGHI
1500400400800200350700
26003001250850089
3
Main
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A1:I3Expression=AND(A1=AGGREGATE(15,6,$A1:$I1/(ISODD(COLUMN($A1:$I1)))/($A1:$I1<>""),3),ISODD(COLUMN(A1)))textNO
A1:I3Expression=AND(A1=AGGREGATE(15,6,$A1:$I1/(ISODD(COLUMN($A1:$I1)))/($A1:$I1<>""),2),ISODD(COLUMN(A1)))textNO
A1:I3Expression=AND(A1=AGGREGATE(15,6,$A1:$I1/(ISODD(COLUMN($A1:$I1)))/($A1:$I1<>""),1),ISODD(COLUMN(A1)))textNO
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,040
Members
449,063
Latest member
ak94

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