another formula IF issue

kezwick

New Member
Joined
Aug 22, 2011
Messages
26
hi guys/gals
this i think is a big one i have a table that i fill in for test results, i would like a IF formula to say if any of the cells equal over speck 'a' then say "Fail speck 'a', Fail speck 'b'" and if not "Pass speck 'a', Pass speck 'b'" for example the 2 specks are a outer and inner speck so A=1.0 to 2.0 and B=0.9 to 2.1. so it could be fail a pass b so theres 3 outcomes can any1 help or is this even possible?
thanks again all
 
I think a variation of the formula uglybunny provided to you should work:
Code:
=IF(AND(AND(C17>=1,C17<=2),AND(C18>=1,C18<=2),AND(C27>=1,C27<=2)),"Pass","Fail")
 
Upvote 0

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"

Forum statistics

Threads
1,224,603
Messages
6,179,849
Members
452,948
Latest member
UsmanAli786

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top