Find values over a certain amount

  • Thread starter Thread starter Captain Snuggles
  • Start date Start date
C

Captain Snuggles

I need to find a way to identify all the people who have a dollar
amount of 250 or more in two of five columns.

Name Amount1 Amount2 Amount3
Amount4 Amount5 True/False
John Doe 300 0 100
5000 0 True
Mary Yu 90 100 100
100 50 False

Any ideas?
 
I need to find a way to identify all the people who have a dollar
amount of 250 or more in two of five columns.

Name Amount1 Amount2 Amount3
Amount4 Amount5 True/False
John Doe 300 0 100
5000 0 True
Mary Yu 90 100 100
100 50 False

Any ideas?

How about adding an extra column with sum of the results? Something like
this:
=IF(B2>=250,1,0)+IF(C2>=250,1,0)+IF(D2>=250,1,0)+IF(E2>=250,1,0)+IF(F2>=250,1,0)
Then, you can test for value equal or greater than 2 in that column...

Regards,

B.
 
How about adding an extra column with sum of the results? Something like
this:
=IF(B2>=250,1,0)+IF(C2>=250,1,0)+IF(D2>=250,1,0)+IF(E2>=250,1,0)+IF(F2>=250,1,0)
Then, you can test for value equal or greater than 2 in that column...

Regards,

B.

Thanks, that worked beautifully!
 

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