Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
First thank you for your help.
I'm trying to use conditional formatting to highlight the cell that is the lowest among these cells and I tried using this formula. =$BM16=MIN(IF($BK16,BM16,BO16,$BQ160,$BK16,BM16,B O16,$BQ16)) I get an error because I guess you cannot use every other cell in the formula. I cannot use a range because each alternating cell has a dollar value while the other cells represent weeks from 1 - 52. An example of the data is: BK BL BM BN BO BP BQ BR $11.340 1 $7.700 2 $10.722 2 $6.000 39 I'm trying to get this result: The cell that should be highlighted is BQ16 If I use =$BM16=MIN(IF($BK16:$BR160,$BK16:$BR16)) it works but highlights the wrong cell, it would highlight BL16. Again thank you for your help Joe |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Try using this in your conditional formatting: =BM16=MIN(IF((MOD(COLUMN(BK16:BQ16),2)=1)*(BK16:BQ 16)0,BK16:BQ16,"")) You original formula worries me because you have $ in front of the first and last cells $BK and $BQ but not the other ones? I modified that a little. If you are applying the formula down a single column then no need for the $ in front of the references. If you are applying down a range then probably all the column references need $ but not the rows. -- If this helps, please click the Yes button. Cheers, Shane Devenshire "Joe Gieder" wrote: First thank you for your help. I'm trying to use conditional formatting to highlight the cell that is the lowest among these cells and I tried using this formula. =$BM16=MIN(IF($BK16,BM16,BO16,$BQ160,$BK16,BM16,B O16,$BQ16)) I get an error because I guess you cannot use every other cell in the formula. I cannot use a range because each alternating cell has a dollar value while the other cells represent weeks from 1 - 52. An example of the data is: BK BL BM BN BO BP BQ BR $11.340 1 $7.700 2 $10.722 2 $6.000 39 I'm trying to get this result: The cell that should be highlighted is BQ16 If I use =$BM16=MIN(IF($BK16:$BR160,$BK16:$BR16)) it works but highlights the wrong cell, it would highlight BL16. Again thank you for your help Joe |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Shane,
It works perfect thank you. I just noticed one problem though with my values, and that is in some of the rows there is text, example is BK BL BM BN BO BP BQ BR $6.640 6 $0.000 0 $0.000 0 NO BID nothing gets highlighted. Is there a way to ignore text? Thank you again Joe "Shane Devenshire" wrote: Hi, Try using this in your conditional formatting: =BM16=MIN(IF((MOD(COLUMN(BK16:BQ16),2)=1)*(BK16:BQ 16)0,BK16:BQ16,"")) You original formula worries me because you have $ in front of the first and last cells $BK and $BQ but not the other ones? I modified that a little. If you are applying the formula down a single column then no need for the $ in front of the references. If you are applying down a range then probably all the column references need $ but not the rows. -- If this helps, please click the Yes button. Cheers, Shane Devenshire "Joe Gieder" wrote: First thank you for your help. I'm trying to use conditional formatting to highlight the cell that is the lowest among these cells and I tried using this formula. =$BM16=MIN(IF($BK16,BM16,BO16,$BQ160,$BK16,BM16,B O16,$BQ16)) I get an error because I guess you cannot use every other cell in the formula. I cannot use a range because each alternating cell has a dollar value while the other cells represent weeks from 1 - 52. An example of the data is: BK BL BM BN BO BP BQ BR $11.340 1 $7.700 2 $10.722 2 $6.000 39 I'm trying to get this result: The cell that should be highlighted is BQ16 If I use =$BM16=MIN(IF($BK16:$BR160,$BK16:$BR16)) it works but highlights the wrong cell, it would highlight BL16. Again thank you for your help Joe |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formatting Conditional Formatting Icon Sets | Excel Discussion (Misc queries) | |||
Formatting cells in a column with conditional formatting? | Excel Discussion (Misc queries) | |||
Protect Cell Formatting including Conditional Formatting | Excel Discussion (Misc queries) | |||
conditional Formatting based on cell formatting | Excel Worksheet Functions | |||
Conditional Formatting that will display conditional data | Excel Worksheet Functions |