ranking

  • Thread starter Thread starter nkob
  • Start date Start date
N

nkob

I have a list of numbers.
45
67
78
45
67
89
90
23

There median is 67(example)
is there a way that i can have a formula that will me which is above or
below the median.
 
A formula for each number?

I put your data in A1:A8 and put this formula in B1 and dragged down.

=IF(A1>MEDIAN(A1:A8),"Above",IF(A1<MEDIAN(A1:A8),"Below","Equal"))
 
Back
Top