Maybe this is what you had in mind:I am trying to keep a "Pass","Fail" cell empty or blank until any one of the cells meets <=5.
=IF(ISBLANK(E19,F19),G19),"",IF(E19:G19<=5,"Pass","Fail"))
Any ideas?
Thanks,
T
Excel Workbook | |||
---|---|---|---|
M | |||
5 | |||
Sheet1 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
M5 | =IF(OR(ISBLANK(E19),ISBLANK(F19),ISBLANK(G19)),"",IF(SUM(E19:G19)<=5,"Pass","Fail")) |
Thanks Neil,
But that doesn't work. I need any one of the 3 cells to meet a pass fail criteria. =IF(AND(E14<=5,F14<=5,G14<=5),"Pass","Fail") This works except when E14, F14, G14 are empty the cell used to report defaults to Pass and I would like it blank.
T
=IF(COUNTA(E19:G19)=COLUMNS(E19:G19),IF(COUNTIF(E19:G19,"<="&5)=COLUMNS(E19:G19),"Pass","Fail"),"")
Thanks Neil,
But that doesn't work. I need any one of the 3 cells to meet a pass fail criteria. =IF(AND(E14<=5,F14<=5,G14<=5),"Pass","Fail") This works except when E14, F14, G14 are empty the cell used to report defaults to Pass and I would like it blank.
T
=IF(AND(ISBLANK(E19),COUNTA(F19:G19)=2),"",IF(SUM(E19:G19)< =5,"Pass","Fail"))