advanced search

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

Guest

i am trying to make a search on excel that will show a certain amount of
cells with a minimum value. instead of going row by row and select the cells
that have at least the amount i am looking for, can i use a function that
will help me do it faster and more efficiently?
i wouldn't mind search row by row but considering how big my spreadsheet is,
it will take me hours to find what i'm looking for. can anyone help me?
Your help will be appreciated.
 
Are you looking for something like the "Small" Function that returns
the Nth smallest number?
=Small(A1:A10,2)
Second Smallest number in A1 to A10

Die_Another_Day
 
no actually what i'm looking for is to find in a specific column (of about
5000 rows) all the cells that contain the minimum value of 2000 for example
 
How about AutoFilter?

Selection.AutoFilter
Selection.AutoFilter Field:=ColumnNumerHere, Criteria1:=">2000"

Die_Another_Day
 

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