> 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.
[quoted text clipped - 7 lines]
>
> 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.
Captain Snuggles - 20 Sep 2007 17:34 GMT
> > 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.
[quoted text clipped - 16 lines]
>
> B.
Thanks, that worked beautifully!
Maybe,
=IF(COUNTIF(B2:G2,">=250")>=2,TRUE,FALSE)
Mike
> 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.
[quoted text clipped - 7 lines]
>
> Any ideas?