![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Newcastle, UK
Posts: 1,174
|
I currently have:
=D6=MIN($D6:$N6) I'd like to highlight the MIN() of a series if above 0. I'm being really slow tosay and can't figure it out thanks
__________________
"Have a good time......all the time" Ian Mac |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Helena, MT
Posts: 13,690
|
How About
=AND(MIN($D$6:$N$6),>0) |
|
|
|
|
|
#3 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Newcastle, UK
Posts: 1,174
|
Quote:
=AND(MIN($D$6:$N$6),>0) wouldn't work anyway. thanks for trying |
|
|
|
|
|
|
#4 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
|
Quote:
=D6=MIN(IF($D$6:$N$6,$D$6:$N$6)) Don't worry: Conditional Formatting will accept this formula. Aladin |
|
|
|
|
|
|
#5 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Helena, MT
Posts: 13,690
|
=AND(D6=MIN($D$6:$N$6),D6>0))
|
|
|
|
|
|
#6 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Newcastle, UK
Posts: 1,174
|
Quote:
=D7=MIN(IF($D7:$N7,$D7:$N7)) work dandy, BUT if a cell currently has a no value (0) the following doesn't work for it =D7=MAX(IF($D7:$N7,$D7:$N7)) I'd like both to work if cell value is >0. I would IF() the 0's out but I need them. thank for the MIN() part though
__________________
"Have a good time......all the time" Ian Mac |
|
|
|
|
|
|
#7 | ||
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,317
|
Quote:
=AND(D7=MAX($D7:$N7),D7>0) should work. Aladin Addendum: =IF(SUM($D$7:$N$7),D6=MIN(IF($D$7:$N$7,$D$7:$N$7))) will excude the case that D7:N7 is filled up with true zeroes and/or with blanks. =AND(D6=MAX($D$6:$D$12),OR(D6>0,D6<0)) will cover all non-zero numbers. [ This Message was edited by: Aladin Akyurek on 2002-04-24 08:11 ] |
||
|
|
|
|
|
#8 | |||
|
MrExcel MVP
Join Date: Feb 2002
Location: Newcastle, UK
Posts: 1,174
|
Quote:
__________________
"Have a good time......all the time" Ian Mac |
|||
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|