There is a way to reduce the formula and also how to handle any errors .
REDUCED FORMULA:
Since with two conditions not satisfied, the third is met, we have:
=SE(Plan1!J2 > 4; "APROVADO"; SE(E(Plan1!J2 <= 4; Plan1!J2 >0); "REPROVADO"; "NÃO POSSUI VALOR"))
If the value is not greater than 4 , and is not both less than 4 and greater than zero , < strong> the remaining numbers are all necessarily less than or equal to zero .
TREAT EVENTUAL ERRORS:
values or negative values indicate data entry failure, so do this:
=SE(Plan1!J2 > 10; "ERRO: VALOR MAIOR DO QUE DEZ!"; SE(Plan1!J2 > 4; "APROVADO"; SE(E(Plan1!J2 <= 4; Plan1!J2 >0); "REPROVADO"; SE(Plan1!J2 =0; "NÃO POSSUI VALOR";"ERRO: VALOR NEGATIVO!")))
Notice that is checked first if the value is greater than ten , and then not following all the following conditions , only negative values remain , so just indicate the error at the end!