Help with RANK

B

Binkx

Hi

I need to rank 100+ numbers but I can't get the formula right. All th
numbers are in one column, but not all the rows e.g. I need to Ran
G1:G11 and G13:G25 and G32:G40 etc. How can you put in more than on
reference? The cells G12,G26:G31 etc have numbers in them that I don'
want ranked

RANK(number,ref,order
 
K

Ken Wright

=RANK(G1,MyList) where mylist is a selection of ranges defined with a single
name, eg

select all your ranges and do Insert / Name / Define, then call it MyList. Now
use it in the rank formula and then copy the formula down. You will get error
messages for cells that fall outside the range, so perhaps

=IF(ISERROR(RANK(G1,MyList)),"",RANK(G1,MyList))
 

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

Top