![]() |
|
|
|
#1
|
|||
|
|||
|
I just tried this formula and it works to show me the LOW but the HIGH is not working.
=IF(E3=1,"LOW",IF(E3=MAX(E:E),"HIGH")). For all rows excet the LOW it get the #N/A. Mike |
|
#2
|
||||
|
||||
|
Oh, duh, I see what you mean. (Sorry, I'm slow today.) You still have to say what you want it to display when it's not the max value. Hm, when I use your formula I get not #VALUE# but FALSE for all the values that aren't Low. What version of Excel are you using?
Regardless of the version, though, you're missing a final argument. The IF function requires three: 1) The condition being tested, in this case E3=1 or E3=MAX(E:E) 2) The value to be used if the condition is true (eg "LOW") 3) The value to be used if the condition is false. Now, you have two IF functions here. The first one has all three arguments: Code:
=IF(E3=1,"LOW",IF(...)) The second IF function, however, is incomplete; it has only two arguments: Code:
IF(E3=MAX(E:E),"HIGH") Code:
=IF(E3=1,"LOW",IF(E3=MAX(E:E),"HIGH","SOMETHING ELSE")) |
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Add a statement | sma | Word | 6 | 03-23-2014 10:30 AM |
| Question about Case statement | Jennifer Murphy | Word VBA | 1 | 01-05-2013 02:30 PM |
Help with IF Statement
|
limpbizkit | Excel | 4 | 02-24-2011 09:16 PM |
if statement
|
piper7971 | PowerPoint | 1 | 08-19-2010 07:10 AM |
Help with IF statement!
|
CPelkey | Word | 1 | 04-12-2010 09:06 AM |