Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet set up that tracks testing scores for
candidates/employees. I would like to use conditional formatting so I can visually see who has the highest score and the lowest score However, I've tried to do conditional formatting and to enter in =MAX (and then my range) but the conditional formatting applies the color change to all cells. Does anyone know how to fix this? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If your range is B2:x99, you could:
Select the range with B2 the activecell format|conditional formatting formula is: =b2=min($b$2:$x$99) and formula is: =b2=max($b$2:$x$99) Those $ signs are important. MMangen wrote: I have a spreadsheet set up that tracks testing scores for candidates/employees. I would like to use conditional formatting so I can visually see who has the highest score and the lowest score However, I've tried to do conditional formatting and to enter in =MAX (and then my range) but the conditional formatting applies the color change to all cells. Does anyone know how to fix this? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Conditional formatting exptect to receive a true or false in order to
determine if the condition is met. In a computer 0 is false and any other number is true. Usually you will see it as 1 for true but really any nuber will do. So in your formula max(range) is returning the highest value (as a guess not 0) so the condition is true and the format applies. What you want is something to determine if the current cell equals the max value and then you will get true or false... so to that end... =A1=max(range($A$1:$A$10) will return true if A1 equals the max of the range and false otherwise. Try something more like that... -- HTH... Jim Thomlinson "MMangen" wrote: I have a spreadsheet set up that tracks testing scores for candidates/employees. I would like to use conditional formatting so I can visually see who has the highest score and the lowest score However, I've tried to do conditional formatting and to enter in =MAX (and then my range) but the conditional formatting applies the color change to all cells. Does anyone know how to fix this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
inserting a conditional "go to" command on a excel "if" function | Excel Worksheet Functions |