D
Darryl_Neeley
It's a pretty long formula for this one cell, which I am trying to make work.
Basically, I want it to where if there is nothing in the preceding cell, for
this cell to display nothing. However, I believe I have one too many
functions in the cell to be able to add the necessary extra IF function.
I'm trying to turn this:
=IF(G8<27,IF(N8<135,"Fail",IF(N8>225,"1st",IF(N8>175,"2nd",IF(N8>134,"3rd","Fail")))),IF(G8<40,IF(N8<110,"Fail",IF(N8>200,"1st",IF(N8>150,"2nd",IF(N8>109,"3rd","Fail")))),IF(G8<46,IF(N8<88,"Fail",IF(N8>175,"1st",IF(N8>125,"2nd",IF(N8>87,"3rd","Fail")))),IF(G8>45,IF(N8<65,"Fail",IF(N8>149,"1st",IF(N8>99,"2nd",IF(N8>64,"3rd","Fail"))))))))
into this:
=IF(N8="","",IF(G8<27,IF(N8<135,"Fail",IF(N8>225,"1st",IF(N8>175,"2nd",IF(N8>134,"3rd","Fail")))),IF(G8<40,IF(N8<110,"Fail",IF(N8>200,"1st",IF(N8>150,"2nd",IF(N8>109,"3rd","Fail")))),IF(G8<46,IF(N8<88,"Fail",IF(N8>175,"1st",IF(N8>125,"2nd",IF(N8>87,"3rd","Fail")))),IF(G8>45,IF(N8<65,"Fail",IF(N8>149,"1st",IF(N8>99,"2nd",IF(N8>64,"3rd","Fail")))))))))
It always highlights the last IF function, which leads me to believe that it
is the one IF function too many.
Any ways I could get around this, right offhand? I thought of possibly
making a table in another sheet, but I'm trying to avoid that if possible.
Thanks for the help.
Basically, I want it to where if there is nothing in the preceding cell, for
this cell to display nothing. However, I believe I have one too many
functions in the cell to be able to add the necessary extra IF function.
I'm trying to turn this:
=IF(G8<27,IF(N8<135,"Fail",IF(N8>225,"1st",IF(N8>175,"2nd",IF(N8>134,"3rd","Fail")))),IF(G8<40,IF(N8<110,"Fail",IF(N8>200,"1st",IF(N8>150,"2nd",IF(N8>109,"3rd","Fail")))),IF(G8<46,IF(N8<88,"Fail",IF(N8>175,"1st",IF(N8>125,"2nd",IF(N8>87,"3rd","Fail")))),IF(G8>45,IF(N8<65,"Fail",IF(N8>149,"1st",IF(N8>99,"2nd",IF(N8>64,"3rd","Fail"))))))))
into this:
=IF(N8="","",IF(G8<27,IF(N8<135,"Fail",IF(N8>225,"1st",IF(N8>175,"2nd",IF(N8>134,"3rd","Fail")))),IF(G8<40,IF(N8<110,"Fail",IF(N8>200,"1st",IF(N8>150,"2nd",IF(N8>109,"3rd","Fail")))),IF(G8<46,IF(N8<88,"Fail",IF(N8>175,"1st",IF(N8>125,"2nd",IF(N8>87,"3rd","Fail")))),IF(G8>45,IF(N8<65,"Fail",IF(N8>149,"1st",IF(N8>99,"2nd",IF(N8>64,"3rd","Fail")))))))))
It always highlights the last IF function, which leads me to believe that it
is the one IF function too many.
Any ways I could get around this, right offhand? I thought of possibly
making a table in another sheet, but I'm trying to avoid that if possible.
Thanks for the help.