Is there a rankif function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to rank a column only if another column value is equal to something.
Does anyone know a workaround for this, I know there is no rankif.

Example below:
column 1 column 2
h 2
h 3
a 1
a 5

I want a formula to tell me the rank of column 2 depending on column 1
being true.
 
Dan,

=1+SUMPRODUCT(($A$2:$A$5=A2)*($B$2:$B$5>B2))

and copy down.

HTH,
Bernie
MS Excel MVP
 
It does not seem to work with the following data set... Or does it?

acet 89
acet 76
acet 42
acet 62
pro 82
pro 81
pro 54
pro 4
oxy 73
oxy 94
oxy 52
 
Gotit!!! Thanks Bernie, I use the sumproduct to get multiple sumifs, but
this is cool, I did not think of using it this way.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top