S Smallest value cell change color Jun 22, 2008 #1 If I have four cells, and I want the one with the smallest value change color automatically.
M Mike H Jun 22, 2008 #2 Hi, Select you 4 cells - in my case A1 - A4 then Format|Conditional format Formula is =A1=MIN($A$1:$A$4) Pick a colour and click OK Mike
Hi, Select you 4 cells - in my case A1 - A4 then Format|Conditional format Formula is =A1=MIN($A$1:$A$4) Pick a colour and click OK Mike
D Dave Peterson Jun 22, 2008 #3 You can: Select the range (say A1:B2) format|conditional formatting (xl2003 menus) formula is: =a1=min($a$1:$b$2) and give it a nice format.
You can: Select the range (say A1:B2) format|conditional formatting (xl2003 menus) formula is: =a1=min($a$1:$b$2) and give it a nice format.
T T. Valko Jun 22, 2008 #4 Assume the range of cells is A11 Select the range A11 Goto the menu Format>Conditional Formatting Formula Is: =AND(A1<>"",A1=MIN($A$1:$D$1)) Click the Format button Select the style(s) desired OK out -- Biff Microsoft Excel MVP "Smallest value cell change color" <Smallest value cell change (e-mail address removed)> wrote in message news:[email protected]...
Assume the range of cells is A11 Select the range A11 Goto the menu Format>Conditional Formatting Formula Is: =AND(A1<>"",A1=MIN($A$1:$D$1)) Click the Format button Select the style(s) desired OK out -- Biff Microsoft Excel MVP "Smallest value cell change color" <Smallest value cell change (e-mail address removed)> wrote in message news:[email protected]...
J jerminski73 Jul 10, 2008 #5 I would like to do this same function only I want to grab the three lowest values. Any ideas?
T T. Valko Jul 10, 2008 #6 ......A.....B.....C.....D 1..22....15....29...30 =SMALL(A$1$1,ROWS(A$1:A1)) Copy down a total of 3 cells. Note that if there aren't at least N numbers in the range you'll get errors. This formula makes sure there are enough numbers: =IF(COUNT(A$1$1)>=ROWS(A$1:A1),SMALL(A$1$1,ROWS(A$1:A1)),"")
......A.....B.....C.....D 1..22....15....29...30 =SMALL(A$1$1,ROWS(A$1:A1)) Copy down a total of 3 cells. Note that if there aren't at least N numbers in the range you'll get errors. This formula makes sure there are enough numbers: =IF(COUNT(A$1$1)>=ROWS(A$1:A1),SMALL(A$1$1,ROWS(A$1:A1)),"")