Greater than less than

BigB77

New Member
Joined
Feb 12, 2016
Messages
20
Ok, I hope someone can help here.
IF E1 is greater or less than E2,E3,E4 "individually" bring back value of Q80. if not bring back 0.
I need the same thing for E1,E2,E3,E4
but each would bring back a different value.
I am basically looking to only have a value in H if the value in E is Higher than each other cells in E.

I hope this makes sense.
Thank you,

E F G H
15Q80
5Q81
3Q82
1Q83

<tbody>
</tbody>
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
IF E1 is greater or less than E2,E3,E4 "individually" bring back value of Q80. if not bring back 0.
Try:
Code:
=IF(OR(E1>MAX(E2:E4),E1< MIN(E2:E4)),"Q80",0)
<min(e2:e4)),"q80",0)[ code]<="" html=""></min(e2:e4)),"q80",0)[>
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,428
Members
449,083
Latest member
Ava19

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top