Hi Everyone,
I have what seems to be a simple problem, yet it is stumping me.
I need to be able to evalue a range of cells for two conditions.
Condition 1: Value greater than or equal two 600
Condition 2: Okay for value to be equal to zero or blank
If both conditions are not met in one cell, the whole row fails.
Each cell in the range needs to be evaluated for these conditions.
Here is the layout.
A B C D
1 200 600 1 Failed
2 600 600 700 Passed
3 0 700 900 Passed
I was looking at a formula for Column D using nested IF statements, but couldn't get them to work (1>Value>600). The other complication is that we could end up evaluating up to 12 data points for each row...which violates the nested IF statement limits.
Ideas?
Thanks,
Matt
Last edited by matt4003; 03-15-2011 at 08:16 PM.
Hi Matt,
Try this
If you are testing more than 3 columns, change the 3 to more and of course make the range of cells larger.=IF(AND(COUNT(A1:C1)=3,MIN(A1:C1)<>0,MIN(A1:C1) >=600), TRUE, FALSE)
One test is worth a thousand opinions.
Click the * below to say thanks.
Hello Marvin,
Many thanks for the quick reply!
I tried your suggestion, but it doesn't seem to handle blank or 0 as an acceptable value.
Thanks again!
Matt
Hi All,
I have attached an example file.
Maybe this will help.
Thanks,
Matt
Hi Matt,
Try this one then:
=IF(AND(OR(A1=0,A1="",A1>=600),OR(B1=0,B1="",B1>=600),OR(C1=0,C1="",C1>=600)),TRUE,FALSE)
One test is worth a thousand opinions.
Click the * below to say thanks.
Many thanks Marvin! Works great in this example. Will need to check how many columns I can go out, but it seems to do what I need it to do!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks