information filter

S

scott

I want to pull information from a list of data, but only the data that is
greater than 500,000. In c1:c30 i have data and c13, c16, c28, c29 are less
than 500,000. I i want to create a new list adjacent to the existing one
using only the values greater than 500,000 what function would i use? i was
thinking:

if(c1<500,000,"",c1) but this would leave that particular cell blank.

thanks for the help
 
S

Sheeloo

I can't think of any formula but you can do this with Data->Filter->Advanced
Filter

Assuming the lable of column C is amount
then enter anywhere in a blank area
Amount

Then chose these two cells as Criteria Range in the Advanced Filter.
 
M

Max

Source data assumed in cols A to C,
from row1 down with key col = col C

In D1:
=IF(ISTEXT(C1),"",IF(C1<500000,"",ROW()))
This is the criteria col

In E1:
=IF(ROW()>COUNT($D:$D),"",INDEX(A:A,SMALL($D:$D,ROW())))
Copy E1 to G1. Select D1:G1, copy down to cover the max expected extent of
source data. Minimize col D. Cols E to G returns only the source lines from
cols A to C which satisfy the criteria, all neatly bunched at the top as
desired.

If you need only to return col C, then just put in E1:
=IF(ROW()>COUNT($D:$D),"",INDEX(C:C,SMALL($D:$D,ROW())))
then copy C1:E1 down to cover the max expected extent of data in col C.
Col E will return the required results
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:17,500 Files:358 Subscribers:55
xdemechanik
 

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

Similar Threads

Formula listing words that meet criteria 5
Formula??? 3
Loss calculations 3
How do I find top 3 in an unsorted list? 3
critera search in FP DB 2
help with formula 1
formula needed please 2
VBA Code... 7

Top