Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Find values over a certain amount

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?

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default Find values over a certain amount

On Thu, 20 Sep 2007 16:02:25 -0000, Captain Snuggles wrote:

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)+I F(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.
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,388
Default Find values over a certain amount

Maybe,

=IF(COUNTIF(B2:G2,"=250")=2,TRUE,FALSE)

Mike

"Captain Snuggles" wrote:

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?


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default Find values over a certain amount

On Sep 20, 9:11 am, Boris wrote:
On Thu, 20 Sep 2007 16:02:25 -0000, Captain Snuggles wrote:
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)+I F(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!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Find amount in row. art Excel Worksheet Functions 13 May 11th 09 06:46 AM
Find the smallest amount Brian Excel Discussion (Misc queries) 1 September 4th 08 02:34 PM
Find a cummulative amount can't understand excel Excel Discussion (Misc queries) 1 February 15th 07 03:45 PM
find values that add up to certain amount Joshua Jacoby Excel Discussion (Misc queries) 12 May 25th 06 08:09 PM
find same amount in different workbooks Debbie Excel Worksheet Functions 1 November 15th 05 11:07 PM


All times are GMT +1. The time now is 06:27 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"