There is how to reduce formula and also how to treat possible errors.
REDUCED FORMULA:
Since with two conditions not met, 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 it’s not at the same time less than 4 and greater than zero, all remaining numbers must be less than or equal to zero.
ADDRESS ANY ERRORS:
Values above ten or negative indicate data entry failure, so do so:
=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!")))
Note that it is first checked if the value is greater than ten, and then, not being met all the following conditions, only the negative values, then, just indicate the error at the end!
Thank you Reginaldo , worked perfectly !!!
– Mateus Rocha
@Mateusrocha Mark the answer as accepted. On the left side of the answer has a tag. Click on it.
– Reginaldo Rigo