Higher, median, & lower

rhyse

New Member
Joined
Apr 11, 2018
Messages
8
Hi

Need some help on this

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>[TABLE="class: grid, width: 0"]
<tbody>[TR]
[TD="align: center"]April 11, 2018[/TD]
[TD="align: center"]March 11, 2018[/TD]
[TD="align: center"]February 11, 2018[/TD]
[/TR]
[TR]
[TD="bgcolor: [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=E67C73]#E67C73[/URL] , align: center"]$238,912.53[/TD]
[TD="bgcolor: [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=57BB8A]#57BB8A[/URL] , align: center"]$345,568.02[/TD]
[TD="bgcolor: [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=FFD666]#FFD666[/URL] , align: center"]$266,331.18[/TD]
[/TR]
[TR]
[TD="align: center"]LOWER[/TD]
[TD="align: center"]HIGHER[/TD]
[TD="align: center"]MEDIAN[/TD]
[/TR]
</tbody>[/TABLE]


Is there anyway that i can get where it says "LOWER" "HIGHER" & "MEDIAN" to automatically populated based on whether the number is the highest, median, or lowest?

Thanks!

Tried so many formulas without any luck!
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Hi,

I'm not sure if I understand correctly, you can do this, I switch the numbers around a bit:


Excel 2010
ABC
111-Apr-1811-Mar-1811-Feb-18
2$238,912.53$345,568.02$548,456.58
3LOWERMEDIANHIGHER
Sheet2
Cell Formulas
RangeFormula
A3=CHOOSE(RANK(A2,$A2:$C2,1),"LOWER","MEDIAN","HIGHER")


A3 formula copied across.
 
Upvote 0
Hi

Need some help on this

<style type="text/css"><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></style>[TABLE="class: grid, width: 0"]
<tbody>[TR]
[TD="align: center"]April 11, 2018[/TD]
[TD="align: center"]March 11, 2018[/TD]
[TD="align: center"]February 11, 2018[/TD]
[/TR]
[TR]
[TD="bgcolor: [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=E67C73]#E67C73[/URL] , align: center"]$238,912.53[/TD]
[TD="bgcolor: [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=57BB8A]#57BB8A[/URL] , align: center"]$345,568.02[/TD]
[TD="bgcolor: [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=FFD666]#FFD666[/URL] , align: center"]$266,331.18[/TD]
[/TR]
[TR]
[TD="align: center"]LOWER[/TD]
[TD="align: center"]HIGHER[/TD]
[TD="align: center"]MEDIAN[/TD]
[/TR]
</tbody>[/TABLE]


Is there anyway that i can get where it says "LOWER" "HIGHER" & "MEDIAN" to automatically populated based on whether the number is the highest, median, or lowest?

Thanks!

Tried so many formulas without any luck!

Another way. In A3 and filled across.

Code:
=INDEX({"LOWER","MEDIAN","HIGHER"},MATCH(A2,PERCENTILE($A$2:$C$2,{0,0.5,1}),0))
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,849
Members
452,361
Latest member
d3ad3y3

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