
Originally Posted by
meddington
Question in two parts. I currently have a spreadsheet calculating pass/fail based on a defined tolerance...for example:
value Pass/Fail Tolerances (dEab)
0.23 Pass 2
0.18 Pass 1
0.30 Pass 2
I'd like to reformat this to one row, like this:
value Pass/Fail Tolerances (dEab)
0.23, 0.18, 0.30 Pass 2, 1, 2
The problem I'm having is the pass/fail cell. Instead of a logical funtion based on two cell values (=IF(A1<=C1,"Pass","Fail") it would be have to be based on the different values in cell A1 and C1. I couldn't wrap my head around this, so I decided to keep the original format, and simply create a summary report formated in one row where the value column would look like this:
=TEXT(C24,"0.00")&", "&TEXT(C25,"0.00")&", "&TEXT(C26,"0.00")
And the pass/fail column would look like this...sort of a multiple logical function:
=IF(C24<=E24,"Pass","Fail")=IF(C25<=E25,"Pass","Fail")=IF(C26<=E26,"Pass","Fail")
my logical function reports "False" and I know I'm totally missing something here. Any advice?
Next issue is I'll have a long column of pass/fail values. I'd like to do a summary here displaying "Pass" if all values of the column are reporting "Pass" and a "Fail" if any cell reports a "Fail". This is probably the easier of the two issues I'm having, but if anyone can help it would be appreciated.
thanks
Bookmarks