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

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
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,215,063
Messages
6,122,935
Members
449,094
Latest member
teemeren

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