Automatic Data Sort?

  • Thread starter Thread starter Scott
  • Start date Start date
S

Scott

Is there a way to automatically sort data without doing it manually? For
instance, I want to select the lowest 10 values of 20, etc. from a range of
data that is driven by references?

Thanks!
 
Easy if there are no duplicates in the data. Say we have unsorted data in A1
thru A100, In B1 enter:

=SMALL(A1:A100,ROW()) and copy down
 
Are you wanting to select the cell, highlight it, populate other cells
with it, etc? Can you explain more about what you want to happen?

The median() command will help if you are looking for the number that
divides a range of values evenly.

=IF(A1<MEDIAN(A1:A20),1,0)

TK
 
I think you mean "filter" don't you?

What would trigger the automatic part?

What are the references that do the driving?


Gord Dibben MS Excel MVP
 

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