Forum Discussion
Chris Fernandez
Jun 13, 2017Copper Contributor
Formula Help Please
I have an average number in one cell and if it falls in between 2 numbers located in 2 seperate cells i want it to read "Pass" or "Fail" if it's outside the parameters in a seperate cell.
Detlef_Lewin
Jun 13, 2017Silver Contributor
Hello Chris
=IF(MEDIAN(AverageNumber,Lower,Upper)=AverageNumber,"Pass","Fail")
Chris Fernandez
Jun 16, 2017Copper Contributor
What can i add to this formula to hide the error message when cell refernces aren't in the cell? I tried adding if(c4=0,"", then your formula), but it messes thing up. Thanks again in advance.
- Zachary GrotovskyJun 16, 2017Brass Contributoruse IFERROR(your formula here,"")
- Detlef_LewinJun 16, 2017Silver Contributor
Why would you calculate a formula when there is nothing to calculate?
=IFERROR(Your_Formula,"")