3 columns - Highlight lowest value - But only if true lowest not a tie.

moyerj26

New Member
Joined
Oct 30, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
My columns look like this.

6 8 9

I want 6 to be highlighted using conditional formating.

That works great.

But if my column looks like this

6 6 8

It will highlight both 6's.

I need help with conditional formating formula so that it ONLY highlights when there is a TRUE Lowest value without a tie.
If there is a tie for lowest value I do not want them to highlight.

Thank you for your help.
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Give this a try. Results in col J:
Book1
ABCDEFGHIJ
16781116
26682218
3111333 
49851115
52551222
Sheet2
Cell Formulas
RangeFormula
F1:H5F1=BYCOL(B1:D1,LAMBDA(c,COUNTIF(B1:D1,c)))
J1:J5J1=LET(r,B1:D1,IFERROR(MIN(FILTER(r,BYCOL(r,LAMBDA(c,COUNTIF(r,c)))=1)),""))
Dynamic array formulas.
 
Upvote 0
Assuming your three columns are A, B, and C and you have a header line on the first row so the data starts on the second row

Select A and start your conditional formatting
Select Use formula option and type in =AND(COUNTIF($A2:$C2, MIN($A2:$C2))=1, A2=MIN($A2:$C2))

Copy this cell and paste the formatting only on the three columns
 
Upvote 0
Give this a try. Results in col J:
Book1
ABCDEFGHIJ
16781116
26682218
3111333 
49851115
52551222
Sheet2
Cell Formulas
RangeFormula
F1:H5F1=BYCOL(B1:D1,LAMBDA(c,COUNTIF(B1:D1,c)))
J1:J5J1=LET(r,B1:D1,IFERROR(MIN(FILTER(r,BYCOL(r,LAMBDA(c,COUNTIF(r,c)))=1)),""))
Dynamic array formulas.
Oops, sorry, I forgot you were looking for conditional formatting.
 
Upvote 0

Forum statistics

Threads
1,223,886
Messages
6,175,191
Members
452,616
Latest member
intern444

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